Skip to content

Commit e7da323

Browse files
Fixed Illegal offset type
1 parent 2278548 commit e7da323

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Processors/Status.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ protected function getData(): array
7070
protected function getStatusFor(array $completed, string $action): string
7171
{
7272
if ($batch = Arr::get($completed, $action)) {
73-
return "[$batch] $this->statusRan";
73+
return sprintf('[%s] %s', $batch, $this->statusRan);
7474
}
7575

7676
return $this->statusPending;

0 commit comments

Comments
 (0)