Laravel AT Protocol Client (alpha & unstable)

Add HasAtpSession contract interface

Changed files
+11
src
Contracts
+11
src/Contracts/HasAtpSession.php
···
··· 1 + <?php 2 + 3 + namespace SocialDept\AtpClient\Contracts; 4 + 5 + interface HasAtpSession 6 + { 7 + /** 8 + * Get the ATP DID associated with this model. 9 + */ 10 + public function getAtpDid(): ?string; 11 + }