Completed
Push — master ( d0c730...c7e284 )
by Mohamed
14s
created
tests/ApplicationTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
 
44 44
     public function testGetMethodMountsRoute()
45 45
     {
46
-        $this->app->get('example', function () {
46
+        $this->app->get('example', function() {
47 47
             return new Response('Hello, World!');
48 48
         });
49 49
 
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
     {
58 58
         $eventCalled = false;
59 59
 
60
-        $this->app->on('test.event', function () use (&$eventCalled) {
60
+        $this->app->on('test.event', function() use (&$eventCalled) {
61 61
             $eventCalled = true;
62 62
         });
63 63
 
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
     {
71 71
         $eventCalled = false;
72 72
 
73
-        $callback = function () use (&$eventCalled) {
73
+        $callback = function() use (&$eventCalled) {
74 74
             $eventCalled = true;
75 75
         };
76 76
 
Please login to merge, or discard this patch.