Skip to content

Commit 452826b

Browse files
fix style ci errors
1 parent 3eb6e18 commit 452826b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/Illuminate/Foundation/Providers/ArtisanServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@
5757
use Illuminate\Foundation\Console\ViewClearCommand;
5858
use Illuminate\Notifications\Console\NotificationTableCommand;
5959
use Illuminate\Queue\Console\BatchesTableCommand;
60+
use Illuminate\Queue\Console\ClearCommand as QueueClearCommand;
6061
use Illuminate\Queue\Console\FailedTableCommand;
6162
use Illuminate\Queue\Console\FlushFailedCommand as FlushFailedQueueCommand;
6263
use Illuminate\Queue\Console\ForgetFailedCommand as ForgetFailedQueueCommand;
@@ -65,7 +66,6 @@
6566
use Illuminate\Queue\Console\RestartCommand as QueueRestartCommand;
6667
use Illuminate\Queue\Console\RetryBatchCommand as QueueRetryBatchCommand;
6768
use Illuminate\Queue\Console\RetryCommand as QueueRetryCommand;
68-
use Illuminate\Queue\Console\ClearCommand as QueueClearCommand;
6969
use Illuminate\Queue\Console\TableCommand;
7070
use Illuminate\Queue\Console\WorkCommand as QueueWorkCommand;
7171
use Illuminate\Routing\Console\ControllerMakeCommand;

src/Illuminate/Queue/Console/ClearCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public function handle()
4747
$queueName = $this->getQueue($connection);
4848
$queue = ($this->laravel['queue'])->connection($connection);
4949

50-
if($queue instanceof ClearableQueue) {
50+
if ($queue instanceof ClearableQueue) {
5151
$count = $queue->clear($queueName);
5252

5353
$this->line('<info>Cleared '.$count.' jobs from the '.$queueName.' queue</info> ');

src/Illuminate/Queue/DatabaseQueue.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
namespace Illuminate\Queue;
44

5-
use Illuminate\Contracts\Queue\Queue as QueueContract;
65
use Illuminate\Contracts\Queue\ClearableQueue;
6+
use Illuminate\Contracts\Queue\Queue as QueueContract;
77
use Illuminate\Database\Connection;
88
use Illuminate\Queue\Jobs\DatabaseJob;
99
use Illuminate\Queue\Jobs\DatabaseJobRecord;

src/Illuminate/Queue/RedisQueue.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
namespace Illuminate\Queue;
44

5-
use Illuminate\Contracts\Queue\Queue as QueueContract;
65
use Illuminate\Contracts\Queue\ClearableQueue;
6+
use Illuminate\Contracts\Queue\Queue as QueueContract;
77
use Illuminate\Contracts\Redis\Factory as Redis;
88
use Illuminate\Queue\Jobs\RedisJob;
99
use Illuminate\Support\Str;

0 commit comments

Comments
 (0)