pull/7387/head
Daniel Supernault 3 days ago
parent 5d487afa6c
commit cc3eff8e23
No known key found for this signature in database
GPG Key ID: 23740873EE6F76A1

@ -18,7 +18,7 @@ use Illuminate\Support\Carbon;
* @property array<array-key, mixed>|null $cached_tallies
* @property int $multiple
* @property int $hide_totals
* @property-read int|null $votes_count
* @property int $votes_count
* @property string|null $last_fetched_at
* @property Carbon|null $expires_at
* @property Carbon|null $created_at

@ -32,7 +32,7 @@ use Illuminate\Support\Str;
* @property string $scope
* @property string $visibility
* @property int $reply
* @property-read int|null $likes_count
* @property int $likes_count
* @property int $reblogs_count
* @property string|null $language
* @property int|null $conversation_id

@ -3,11 +3,14 @@
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Carbon;
use Illuminate\Support\Facades\Storage;
use Pixelfed\Snowflake\HasSnowflakePrimary;
/**
* @property-read Story|null $story
* @property Story|null $story
* @property string|null $type
* @property Carbon $created_at
*
* @method static \Illuminate\Database\Eloquent\Builder<static>|StoryItem newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder<static>|StoryItem newQuery()

Loading…
Cancel
Save