Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
lohanidamodar committed Apr 8, 2024
1 parent 3fa5a6b commit 903a45e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Platform/Platform.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public function init(string $type, array $params = []): void
case Service::TYPE_WORKER:
$workerName = $params['workerName'] ?? null;

if (!isset($this->worker)) {
if (! isset($this->worker)) {
$connection = $params['connection'] ?? null;
$workersNum = $params['workersNum'] ?? 0;
$queueName = $params['queueName'] ?? 'v1-'.$workerName;
Expand Down

0 comments on commit 903a45e

Please sign in to comment.