Laravel AT Protocol Client (alpha & unstable)
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

Implement root() method in all domain clients

+30
+5
src/Client/AtprotoClient.php
··· 52 52 { 53 53 return AtpClient::class; 54 54 } 55 + 56 + public function root(): AtpClient 57 + { 58 + return $this->atp; 59 + } 55 60 }
+5
src/Client/BskyClient.php
··· 68 68 { 69 69 return AtpClient::class; 70 70 } 71 + 72 + public function root(): AtpClient 73 + { 74 + return $this->atp; 75 + } 71 76 }
+5
src/Client/ChatClient.php
··· 40 40 { 41 41 return AtpClient::class; 42 42 } 43 + 44 + public function root(): AtpClient 45 + { 46 + return $this->atp; 47 + } 43 48 }
+5
src/Client/OzoneClient.php
··· 46 46 { 47 47 return AtpClient::class; 48 48 } 49 + 50 + public function root(): AtpClient 51 + { 52 + return $this->atp; 53 + } 49 54 }
+5
src/Client/Public/AtprotoPublicClient.php
··· 30 30 { 31 31 return AtpPublicClient::class; 32 32 } 33 + 34 + public function root(): AtpPublicClient 35 + { 36 + return $this->atp; 37 + } 33 38 }
+5
src/Client/Public/BskyPublicClient.php
··· 36 36 { 37 37 return AtpPublicClient::class; 38 38 } 39 + 40 + public function root(): AtpPublicClient 41 + { 42 + return $this->atp; 43 + } 39 44 }