@@ -27,7 +27,7 @@ discard block |
||
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 |
||
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); |