@@ -28,12 +28,12 @@ |
||
28 | 28 | foreach ($this->listeners as $listener) { |
29 | 29 | $methods = $this->inflector->inflect($event, $listener); |
30 | 30 | |
31 | - if (! is_array($methods)) { |
|
31 | + if (!is_array($methods)) { |
|
32 | 32 | $methods = [$methods]; |
33 | 33 | } |
34 | 34 | |
35 | 35 | foreach ($methods as $method) { |
36 | - if (! method_exists($listener, $method)) { |
|
36 | + if (!method_exists($listener, $method)) { |
|
37 | 37 | continue; |
38 | 38 | } |
39 | 39 |