Completed
Push — master ( c81f7d...b216e8 )
by Charles
02:10
created
commands/QueueController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
                 $eventName = $reflect->getShortName();
51 51
                 
52 52
                 // Bind an event handler
53
-                $this->on($eventName, function ($event) {
53
+                $this->on($eventName, function($event) {
54 54
                     $event->run();
55 55
                     // The event should be handled in some way, if it isn't, called the global event handler and mark it as processed
56 56
                     if (!$event->handled) {
Please login to merge, or discard this patch.
config/web.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
     'id' => $yaml['app']['id'],
9 9
     'name' => $yaml['app']['name'],
10 10
     'basePath' => dirname(__DIR__),
11
-    'bootstrap' => [ 'log' ],
11
+    'bootstrap' => ['log'],
12 12
     'language' => 'en-US',
13 13
     'sourceLanguage' => 'en-US',
14 14
     'components' => [
Please login to merge, or discard this patch.