diff --git a/Onceable.php b/Onceable.php index 9a405da4..51a3aa02 100644 --- a/Onceable.php +++ b/Onceable.php @@ -18,7 +18,7 @@ class Onceable public function __construct( public string $hash, public ?object $object, - public $callable + public $callable, ) { // } diff --git a/Testing/Fakes/BatchFake.php b/Testing/Fakes/BatchFake.php index bf36b162..57eb2013 100644 --- a/Testing/Fakes/BatchFake.php +++ b/Testing/Fakes/BatchFake.php @@ -39,17 +39,18 @@ class BatchFake extends Batch * @param \Carbon\CarbonImmutable|null $finishedAt * @return void */ - public function __construct(string $id, - string $name, - int $totalJobs, - int $pendingJobs, - int $failedJobs, - array $failedJobIds, - array $options, - CarbonImmutable $createdAt, - ?CarbonImmutable $cancelledAt = null, - ?CarbonImmutable $finishedAt = null) - { + public function __construct( + string $id, + string $name, + int $totalJobs, + int $pendingJobs, + int $failedJobs, + array $failedJobIds, + array $options, + CarbonImmutable $createdAt, + ?CarbonImmutable $cancelledAt = null, + ?CarbonImmutable $finishedAt = null, + ) { $this->id = $id; $this->name = $name; $this->totalJobs = $totalJobs;