Completed
Push — master ( 6200b5...f6f2cd )
by Andrew
03:06
created
src/Emitter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
         foreach ($this->listeners as $listener) {
29 29
             $method = $this->inflector->inflect($event, $listener);
30 30
 
31
-            if (! $method) {
31
+            if (!$method) {
32 32
                 continue;
33 33
             }
34 34
 
Please login to merge, or discard this patch.
src/Inflector/HandleMethodInflector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
     {
7 7
         $method = 'handle';
8 8
 
9
-        if (! method_exists($listener, $method)) {
9
+        if (!method_exists($listener, $method)) {
10 10
             return null;
11 11
         }
12 12
 
Please login to merge, or discard this patch.