Skip to content

Commit

Permalink
cs fix
Browse files Browse the repository at this point in the history
  • Loading branch information
arusinowski committed Nov 18, 2024
1 parent 99ee8f7 commit 2d6c258
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/Command/PurgeQueueCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
use CakeDC\QueueMonitor\Exception\QueueMonitorException;
use CakeDC\QueueMonitor\Service\EnqueueClientService;
use Psr\Log\LogLevel;
use function Cake\I18n\__;
use function Cake\Collection\collection;
use function Cake\I18n\__;

/**
* Purge command.
Expand Down Expand Up @@ -78,7 +78,7 @@ public function buildOptionParser(ConsoleOptionParser $parser): ConsoleOptionPar
'short' => 'y',
'boolean' => true,
'default' => false,
'help' => __('Yes - skip confirmation prompt')
'help' => __('Yes - skip confirmation prompt'),
]);
}

Expand Down Expand Up @@ -182,7 +182,7 @@ private function checkConfirmation(string $prompt, Arguments $args, ConsoleIo $i
$prompt,
[
__('yes'),
__('no')
__('no'),
],
__('no')
);
Expand Down
2 changes: 1 addition & 1 deletion src/Service/EnqueueClientService.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ private function getEnqueueInternalQueueName(Config $enqueueClientConfig): strin
return implode('.', [
$enqueueClientConfig->getPrefix(),
$enqueueClientConfig->getApp(),
$enqueueClientConfig->getDefaultQueue()
$enqueueClientConfig->getDefaultQueue(),
]);
}
}

0 comments on commit 2d6c258

Please sign in to comment.