diff --git a/src/Queue/Console/ListenCommand.php b/src/Queue/Console/ListenCommand.php
index 69b23713c..dc2b43ed3 100644
--- a/src/Queue/Console/ListenCommand.php
+++ b/src/Queue/Console/ListenCommand.php
@@ -1,5 +1,14 @@
 <?php
 
+/*
+ * This file is part of Flarum.
+ *
+ * (c) Toby Zerner <toby.zerner@gmail.com>
+ *
+ * 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/src/Queue/Listener.php b/src/Queue/Listener.php
index 3a16612b9..72be357fc 100644
--- a/src/Queue/Listener.php
+++ b/src/Queue/Listener.php
@@ -1,5 +1,14 @@
 <?php
 
+/*
+ * This file is part of Flarum.
+ *
+ * (c) Toby Zerner <toby.zerner@gmail.com>
+ *
+ * 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/src/Queue/QueueServiceProvider.php b/src/Queue/QueueServiceProvider.php
index 2701fd175..aad14bb49 100644
--- a/src/Queue/QueueServiceProvider.php
+++ b/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