From 8b029f9cd4e0a1836f4a49ee9dbb16ad7392ef91 Mon Sep 17 00:00:00 2001 From: luceos Date: Wed, 11 Sep 2019 09:43:46 +0000 Subject: [PATCH] Apply fixes from StyleCI [ci skip] [skip ci] --- framework/core/src/Queue/Console/ListenCommand.php | 9 +++++++++ framework/core/src/Queue/Listener.php | 9 +++++++++ framework/core/src/Queue/QueueServiceProvider.php | 2 +- 3 files changed, 19 insertions(+), 1 deletion(-) diff --git a/framework/core/src/Queue/Console/ListenCommand.php b/framework/core/src/Queue/Console/ListenCommand.php index 69b23713c..dc2b43ed3 100644 --- a/framework/core/src/Queue/Console/ListenCommand.php +++ b/framework/core/src/Queue/Console/ListenCommand.php @@ -1,5 +1,14 @@ + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + namespace Flarum\Queue\Console; use Illuminate\Queue\Listener; diff --git a/framework/core/src/Queue/Listener.php b/framework/core/src/Queue/Listener.php index 3a16612b9..72be357fc 100644 --- a/framework/core/src/Queue/Listener.php +++ b/framework/core/src/Queue/Listener.php @@ -1,5 +1,14 @@ + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + namespace Flarum\Queue; use Illuminate\Queue\ListenerOptions; diff --git a/framework/core/src/Queue/QueueServiceProvider.php b/framework/core/src/Queue/QueueServiceProvider.php index 2701fd175..aad14bb49 100644 --- a/framework/core/src/Queue/QueueServiceProvider.php +++ b/framework/core/src/Queue/QueueServiceProvider.php @@ -18,8 +18,8 @@ use Illuminate\Contracts\Queue\Factory; use Illuminate\Queue\Connectors\ConnectorInterface; use Illuminate\Queue\Console as Commands; use Illuminate\Queue\Failed\NullFailedJobProvider; -use Illuminate\Queue\SyncQueue; use Illuminate\Queue\Listener as QueueListener; +use Illuminate\Queue\SyncQueue; use Illuminate\Queue\Worker; class QueueServiceProvider extends AbstractServiceProvider