@@ -11,7 +11,7 @@ |
||
| 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 | |
@@ -13,7 +13,7 @@ |
||
| 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 | |
@@ -39,14 +39,14 @@ |
||
| 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 | |