Skip to content

Commit

Permalink
Fixed Illegal offset type
Browse files Browse the repository at this point in the history
  • Loading branch information
andrey-helldar committed Oct 29, 2023
1 parent 2278548 commit e7da323
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Processors/Status.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ protected function getData(): array
protected function getStatusFor(array $completed, string $action): string
{
if ($batch = Arr::get($completed, $action)) {
return "[$batch] $this->statusRan";
return sprintf('[%s] %s', $batch, $this->statusRan);
}

return $this->statusPending;
Expand Down

0 comments on commit e7da323

Please sign in to comment.