Laravel AT Protocol Client (alpha & unstable)
3
fork

Configure Feed

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

Use root() instead of protected $atp property in request constructors

+2 -2
+1 -1
src/Client/Public/Requests/PublicRequest.php
··· 10 10 11 11 public function __construct($parent) 12 12 { 13 - $this->atp = $parent->atp; 13 + $this->atp = $parent->root(); 14 14 } 15 15 }
+1 -1
src/Client/Requests/Request.php
··· 13 13 14 14 public function __construct($parent) 15 15 { 16 - $this->atp = $parent->atp; 16 + $this->atp = $parent->root(); 17 17 } 18 18 }