From c584bbb8a5fc3a36dcf0f40b1496d5a5c174667e Mon Sep 17 00:00:00 2001 From: Alexandru Manase Date: Wed, 3 Apr 2024 23:43:50 +0300 Subject: [PATCH] Fix PHPStan errors (#307) * wip * fix phpstan errors --- app/Models/Stream.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/Models/Stream.php b/app/Models/Stream.php index 3d53298..851a85a 100644 --- a/app/Models/Stream.php +++ b/app/Models/Stream.php @@ -19,6 +19,10 @@ use Spatie\IcalendarGenerator\Components\Event; use Vinkla\Hashids\Facades\Hashids; +/** + * @property \Illuminate\Support\Carbon $scheduled_start_time + * @property \Illuminate\Support\Carbon|null $actual_start_time + */ class Stream extends Model implements Feedable { use HasFactory;