Completed
Push — master ( 5cbf4f...a11706 )
by Andrew
02:23
created
src/Inflector/TypehintMethodInflector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
         $methods = $class->getMethods();
12 12
 
13 13
         foreach ($methods as $method) {
14
-            if (! $method->isPublic()) {
14
+            if (!$method->isPublic()) {
15 15
                 continue;
16 16
             }
17 17
 
Please login to merge, or discard this patch.
src/Registry/TypehintedClassRegistry.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
         $methods = $class->getMethods();
14 14
 
15 15
         foreach ($methods as $method) {
16
-            if (! $method->isPublic()) {
16
+            if (!$method->isPublic()) {
17 17
                 continue;
18 18
             }
19 19
 
Please login to merge, or discard this patch.
src/Middleware/InvokeListenerMiddleware.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,14 +39,14 @@
 block discarded – undo
39 39
     {
40 40
         $listeners = $this->listeners->find($event);
41 41
 
42
-        if (! $listeners) {
42
+        if (!$listeners) {
43 43
             return;
44 44
         }
45 45
 
46 46
         foreach ($listeners as $listener) {
47 47
             $method = $this->inflector->inflect($event, $listener);
48 48
 
49
-            if (! $method) {
49
+            if (!$method) {
50 50
                 continue;
51 51
             }
52 52
 
Please login to merge, or discard this patch.