Skip to content

Commit 2d6c258

Browse files
committed
cs fix
1 parent 99ee8f7 commit 2d6c258

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Command/PurgeQueueCommand.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
use CakeDC\QueueMonitor\Exception\QueueMonitorException;
2323
use CakeDC\QueueMonitor\Service\EnqueueClientService;
2424
use Psr\Log\LogLevel;
25-
use function Cake\I18n\__;
2625
use function Cake\Collection\collection;
26+
use function Cake\I18n\__;
2727

2828
/**
2929
* Purge command.
@@ -78,7 +78,7 @@ public function buildOptionParser(ConsoleOptionParser $parser): ConsoleOptionPar
7878
'short' => 'y',
7979
'boolean' => true,
8080
'default' => false,
81-
'help' => __('Yes - skip confirmation prompt')
81+
'help' => __('Yes - skip confirmation prompt'),
8282
]);
8383
}
8484

@@ -182,7 +182,7 @@ private function checkConfirmation(string $prompt, Arguments $args, ConsoleIo $i
182182
$prompt,
183183
[
184184
__('yes'),
185-
__('no')
185+
__('no'),
186186
],
187187
__('no')
188188
);

src/Service/EnqueueClientService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ private function getEnqueueInternalQueueName(Config $enqueueClientConfig): strin
4848
return implode('.', [
4949
$enqueueClientConfig->getPrefix(),
5050
$enqueueClientConfig->getApp(),
51-
$enqueueClientConfig->getDefaultQueue()
51+
$enqueueClientConfig->getDefaultQueue(),
5252
]);
5353
}
5454
}

0 commit comments

Comments
 (0)