Passed
Push — main ( 3fc6af...0545d9 )
by Proyecto
08:13
created
src/TAU/Common/SettersBag.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,8 +49,9 @@
 block discarded – undo
49 49
         foreach ($this->setters as $getter){
50 50
             if( $this->isGetter($getter) )
51 51
             {
52
-                if( $this->$getter() != $o->$getter() )
53
-                    return false;
52
+                if( $this->$getter() != $o->$getter() ) {
53
+                                    return false;
54
+                }
54 55
             }
55 56
         }
56 57
         return true;
Please login to merge, or discard this patch.