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.
lib/Doctrine/Common/DataFixtures/Purger/ORMPurger.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -30,10 +30,10 @@  discard block
 block discarded – undo
30 30
     private $purgeMode = self::PURGE_MODE_DELETE;
31 31
 
32 32
     /**
33
-    * Table/view names to be excleded from purge
34
-    *
35
-    * @var string[]
36
-    */
33
+     * Table/view names to be excleded from purge
34
+     *
35
+     * @var string[]
36
+     */
37 37
     private $excluded;
38 38
 
39 39
     /**
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
      */
77 77
     public function setEntityManager(EntityManagerInterface $em)
78 78
     {
79
-      $this->em = $em;
79
+        $this->em = $em;
80 80
     }
81 81
 
82 82
     /**
Please login to merge, or discard this patch.