@@ -43,7 +43,7 @@ discard block |
||
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 |
||
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 |
||
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 |