Test Failed
Branch master (3a1e2c)
by Jonathan
05:26
created
lib/Doctrine/Common/DataFixtures/Loader.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -176,7 +176,9 @@
 block discarded – undo
176 176
     public function isTransient($className)
177 177
     {
178 178
         $rc = new \ReflectionClass($className);
179
-        if ($rc->isAbstract()) return true;
179
+        if ($rc->isAbstract()) {
180
+            return true;
181
+        }
180 182
 
181 183
         $interfaces = class_implements($className);
182 184
         return in_array(FixtureInterface::class, $interfaces) ? false : true;
Please login to merge, or discard this patch.