@@ -37,7 +37,7 @@ |
||
37 | 37 | */ |
38 | 38 | public static function getEmptyInstance() |
39 | 39 | { |
40 | - if (! self::$_emptyEventArgsInstance) { |
|
40 | + if ( ! self::$_emptyEventArgsInstance) { |
|
41 | 41 | self::$_emptyEventArgsInstance = new EventArgs(); |
42 | 42 | } |
43 | 43 |
@@ -30,7 +30,7 @@ |
||
30 | 30 | */ |
31 | 31 | public function dispatchEvent($eventName, ?EventArgs $eventArgs = null) |
32 | 32 | { |
33 | - if (! isset($this->_listeners[$eventName])) { |
|
33 | + if ( ! isset($this->_listeners[$eventName])) { |
|
34 | 34 | return; |
35 | 35 | } |
36 | 36 |