Skip to content

Commit

Permalink
fix type casting
Browse files Browse the repository at this point in the history
  • Loading branch information
michalsn committed Dec 19, 2023
1 parent c7489c1 commit 2b19739
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Commands/QueueWork.php
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ public function run(array $params)
CLI::print('Starting a new job: ', 'cyan');
CLI::print($work->payload['job'], 'light_cyan');
CLI::print(', with ID: ', 'cyan');
CLI::print($work->id, 'light_cyan');
CLI::print((string) $work->id, 'light_cyan');

$this->handleWork($work, $config, $tries, $retryAfter);

Expand Down

0 comments on commit 2b19739

Please sign in to comment.