From 8ea50dc0290fc85895f3494b1e7435123771df6b Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Thu, 18 Jul 2024 14:28:33 +0200 Subject: [PATCH] refactor: Update DockerCleanupJob to handle nullable usageBefore property --- app/Jobs/DockerCleanupJob.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Jobs/DockerCleanupJob.php b/app/Jobs/DockerCleanupJob.php index 785940ee6..a88b4c2f5 100644 --- a/app/Jobs/DockerCleanupJob.php +++ b/app/Jobs/DockerCleanupJob.php @@ -20,7 +20,7 @@ class DockerCleanupJob implements ShouldBeEncrypted, ShouldQueue public $timeout = 300; - public ?int $usageBefore = null; + public int|string|null $usageBefore = null; public function __construct(public Server $server) {}