From dab13c92ebd1487fae54aa0e0f37ea038292bc69 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Wed, 14 Feb 2024 15:21:03 +0100 Subject: [PATCH] Update disk_usage property type in ServerStatusJob --- app/Jobs/ServerStatusJob.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Jobs/ServerStatusJob.php b/app/Jobs/ServerStatusJob.php index b327c3a7c..d0243fa9a 100644 --- a/app/Jobs/ServerStatusJob.php +++ b/app/Jobs/ServerStatusJob.php @@ -16,7 +16,7 @@ class ServerStatusJob implements ShouldQueue, ShouldBeEncrypted { use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; - public ?int $disk_usage = null; + public int|string|null $disk_usage = null; public $tries = 4; public function backoff(): int {