tangled
alpha
login
or
join now
socialde.pt
/
atp-client
Laravel AT Protocol Client (alpha & unstable)
3
fork
atom
overview
issues
pulls
pipelines
Add HasAtpSession contract interface
Miguel Batres
1 month ago
a53bd853
057a5903
options
unified
split
Changed files
+11
src
Contracts
HasAtpSession.php
+11
src/Contracts/HasAtpSession.php
···
0
0
0
0
0
0
0
0
0
0
0
···
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
+
}