refactor: Update DockerCleanupJob to handle nullable usageBefore property

This commit is contained in:
Andras Bacsai 2024-07-18 14:28:33 +02:00
parent ec191af874
commit 8ea50dc029

View File

@ -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) {}