Passed
Push — master ( 3112ca...a45803 )
by Blixit
02:01
created
src/Messaging/MessagingMiddleware.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
     public function handle(MessageInterface $message) : void
28 28
     {
29 29
         $class = get_class($message);
30
-        if (! $this->supports($class)) {
30
+        if (!$this->supports($class)) {
31 31
             return;
32 32
         }
33 33
 
@@ -39,11 +39,11 @@  discard block
 block discarded – undo
39 39
                 $locatedHandler($message);
40 40
                 continue;
41 41
             }
42
-            if (! is_array($locatedHandler)) {
42
+            if (!is_array($locatedHandler)) {
43 43
                 continue;
44 44
             }
45 45
             foreach ($locatedHandler as $handler) {
46
-                if (! is_callable($handler)) {
46
+                if (!is_callable($handler)) {
47 47
                     continue;
48 48
                 }
49 49
                 $handler($message);
Please login to merge, or discard this patch.