Laravel AT Protocol Client (alpha & unstable)
3
fork

Configure Feed

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

Add PublicRequest base class

+15
+15
src/Client/Public/Requests/PublicRequest.php
··· 1 + <?php 2 + 3 + namespace SocialDept\AtpClient\Client\Public\Requests; 4 + 5 + use SocialDept\AtpClient\Client\Public\AtpPublicClient; 6 + 7 + class PublicRequest 8 + { 9 + public AtpPublicClient $atp; 10 + 11 + public function __construct($parent) 12 + { 13 + $this->atp = $parent->atp; 14 + } 15 + }