1
0
Fork 0
mirror of https://github.com/archtechx/jobpipeline.git synced 2025-12-12 20:04:03 +00:00

remove unnecessary property declarations

This commit is contained in:
Jonathan Martins 2023-03-02 14:23:11 -03:00
parent 96184f5a76
commit 80c4317224

View file

@ -28,18 +28,7 @@ class JobPipeline implements ShouldQueue
public bool $shouldBeQueued;
/** @var string */
public string|null $connection;
/** @var string */
public string|null $queue;
/** @var int */
public int $timeout = 1;
public $delay = 0;
/** @var int */
public int $tries = 1;
public string $queue;
public function __construct($jobs, callable $send = null, bool $shouldBeQueued = null)
{