Failed Conditions
Pull Request — master (#6798)
by Zacharias
05:19
created
Performance/Hydration/MixedQueryFetchJoinArrayHydrationPerformanceBench.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
                 'u__status'      => 'developer',
64 64
                 'u__username'    => 'jwage',
65 65
                 'u__name'        => 'Jonathan',
66
-                'sclr0'          => 'JWAGE' . $i,
66
+                'sclr0'          => 'JWAGE'.$i,
67 67
                 'p__phonenumber' => '91',
68 68
             ];
69 69
         }
Please login to merge, or discard this patch.
ORM/Cache/Persister/Collection/ReadWriteCachedCollectionPersister.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
         $isInitialized = $collection->isInitialized();
62 62
         $isDirty       = $collection->isDirty();
63 63
 
64
-        if (! $isInitialized && ! $isDirty) {
64
+        if ( ! $isInitialized && ! $isDirty) {
65 65
             return;
66 66
         }
67 67
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/Ticket/GH4252Test.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -18,9 +18,9 @@  discard block
 block discarded – undo
18 18
         parent::setup();
19 19
 
20 20
         $this->_schemaTool->createSchema(array(
21
-            $this->_em->getClassMetadata(__NAMESPACE__ . '\\GH4252City'),
22
-            $this->_em->getClassMetadata(__NAMESPACE__ . '\\GH4252Resident'),
23
-            $this->_em->getClassMetadata(__NAMESPACE__ . '\\GH4252Address'),
21
+            $this->_em->getClassMetadata(__NAMESPACE__.'\\GH4252City'),
22
+            $this->_em->getClassMetadata(__NAMESPACE__.'\\GH4252Resident'),
23
+            $this->_em->getClassMetadata(__NAMESPACE__.'\\GH4252Address'),
24 24
         ));
25 25
     }
26 26
 
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
         $this->_em->clear();
34 34
 
35 35
         /** @var GH4252City $city */
36
-        $city = $this->_em->find(__NAMESPACE__ . '\\GH4252City', $city->getId());
36
+        $city = $this->_em->find(__NAMESPACE__.'\\GH4252City', $city->getId());
37 37
         $city->setFlag(false);
38 38
         /** @var GH4252Resident $resident */
39 39
         $resident = $city->getResidents()->first();
Please login to merge, or discard this patch.