Failed Conditions
Pull Request — master (#2)
by Michael
03:59
created
lib/Doctrine/Common/EventArgs.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
lib/Doctrine/Common/EventManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.