Laravel AT Protocol Client (alpha & unstable)
3
fork

Configure Feed

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

Add Arrayable interface to StrongRef

+6 -1
+6 -1
src/Data/StrongRef.php
··· 2 2 3 3 namespace SocialDept\AtpClient\Data; 4 4 5 - class StrongRef 5 + use Illuminate\Contracts\Support\Arrayable; 6 + 7 + /** 8 + * @implements Arrayable<string, string> 9 + */ 10 + class StrongRef implements Arrayable 6 11 { 7 12 public function __construct( 8 13 public readonly string $uri,