Failed Conditions
Pull Request — develop (#6600)
by Mike
62:56
created
tests/Doctrine/Tests/ORM/Functional/SecondLevelCacheManyToManyTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Doctrine\Tests\ORM\Functional;
6 6
 
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
         $entity     = $this->em->find(Travel::class, $entitiId);
235 235
 
236 236
         self::assertEquals(0, $entity->getVisitedCities()->count());
237
-        self::assertEquals($queryCount+2, $this->getCurrentQueryCount());
237
+        self::assertEquals($queryCount + 2, $this->getCurrentQueryCount());
238 238
 
239 239
         $this->em->clear();
240 240
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/AdvancedDqlQueryTest.php 2 patches
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -28,8 +28,8 @@  discard block
 block discarded – undo
28 28
     public function testAggregateWithHavingClause()
29 29
     {
30 30
         $dql = 'SELECT p.department, AVG(p.salary) AS avgSalary '.
31
-               'FROM Doctrine\Tests\Models\Company\CompanyEmployee p '.
32
-               'GROUP BY p.department HAVING SUM(p.salary) > 200000 ORDER BY p.department';
31
+                'FROM Doctrine\Tests\Models\Company\CompanyEmployee p '.
32
+                'GROUP BY p.department HAVING SUM(p.salary) > 200000 ORDER BY p.department';
33 33
 
34 34
         $result = $this->em->createQuery($dql)->getScalarResult();
35 35
 
@@ -43,8 +43,8 @@  discard block
 block discarded – undo
43 43
     public function testUnnamedScalarResultsAreOneBased()
44 44
     {
45 45
         $dql = 'SELECT p.department, AVG(p.salary) '.
46
-               'FROM Doctrine\Tests\Models\Company\CompanyEmployee p '.
47
-               'GROUP BY p.department HAVING SUM(p.salary) > 200000 ORDER BY p.department';
46
+                'FROM Doctrine\Tests\Models\Company\CompanyEmployee p '.
47
+                'GROUP BY p.department HAVING SUM(p.salary) > 200000 ORDER BY p.department';
48 48
 
49 49
         $result = $this->em->createQuery($dql)->getScalarResult();
50 50
 
@@ -56,9 +56,9 @@  discard block
 block discarded – undo
56 56
     public function testOrderByResultVariableCollectionSize()
57 57
     {
58 58
         $dql = 'SELECT p.name, size(p.friends) AS friends ' .
59
-               'FROM Doctrine\Tests\Models\Company\CompanyPerson p ' .
60
-               'WHERE p.friends IS NOT EMPTY ' .
61
-               'ORDER BY friends DESC, p.name DESC';
59
+                'FROM Doctrine\Tests\Models\Company\CompanyPerson p ' .
60
+                'WHERE p.friends IS NOT EMPTY ' .
61
+                'ORDER BY friends DESC, p.name DESC';
62 62
 
63 63
         $result = $this->em->createQuery($dql)->getScalarResult();
64 64
 
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
     public function testIsNullAssociation()
81 81
     {
82 82
         $dql = 'SELECT p FROM Doctrine\Tests\Models\Company\CompanyPerson p '.
83
-               'WHERE p.spouse IS NULL';
83
+                'WHERE p.spouse IS NULL';
84 84
         $result = $this->em->createQuery($dql)->getResult();
85 85
 
86 86
         self::assertEquals(2, count($result));
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
     public function testSelectSubselect()
95 95
     {
96 96
         $dql = 'SELECT p, (SELECT c.brand FROM Doctrine\Tests\Models\Company\CompanyCar c WHERE p.car = c) brandName '.
97
-               'FROM Doctrine\Tests\Models\Company\CompanyManager p';
97
+                'FROM Doctrine\Tests\Models\Company\CompanyManager p';
98 98
         $result = $this->em->createQuery($dql)->getArrayResult();
99 99
 
100 100
         self::assertEquals(1, count($result));
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
     public function testInSubselect()
105 105
     {
106 106
         $dql = "SELECT p.name FROM Doctrine\Tests\Models\Company\CompanyPerson p ".
107
-               "WHERE p.name IN (SELECT n.name FROM Doctrine\Tests\Models\Company\CompanyPerson n WHERE n.name = 'Roman B.')";
107
+                "WHERE p.name IN (SELECT n.name FROM Doctrine\Tests\Models\Company\CompanyPerson n WHERE n.name = 'Roman B.')";
108 108
         $result = $this->em->createQuery($dql)->getScalarResult();
109 109
 
110 110
         self::assertEquals(1, count($result));
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
     public function testGroupByMultipleFields()
115 115
     {
116 116
         $dql = 'SELECT p.department, p.name, count(p.id) FROM Doctrine\Tests\Models\Company\CompanyEmployee p '.
117
-               'GROUP BY p.department, p.name';
117
+                'GROUP BY p.department, p.name';
118 118
         $result = $this->em->createQuery($dql)->getResult();
119 119
 
120 120
         self::assertEquals(4, count($result));
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Doctrine\Tests\ORM\Functional;
6 6
 
@@ -55,9 +55,9 @@  discard block
 block discarded – undo
55 55
 
56 56
     public function testOrderByResultVariableCollectionSize()
57 57
     {
58
-        $dql = 'SELECT p.name, size(p.friends) AS friends ' .
59
-               'FROM Doctrine\Tests\Models\Company\CompanyPerson p ' .
60
-               'WHERE p.friends IS NOT EMPTY ' .
58
+        $dql = 'SELECT p.name, size(p.friends) AS friends '.
59
+               'FROM Doctrine\Tests\Models\Company\CompanyPerson p '.
60
+               'WHERE p.friends IS NOT EMPTY '.
61 61
                'ORDER BY friends DESC, p.name DESC';
62 62
 
63 63
         $result = $this->em->createQuery($dql)->getScalarResult();
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/OrderedCollectionTest.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -104,8 +104,8 @@
 block discarded – undo
104 104
         $routeId = $this->createPersistedRouteWithLegs();
105 105
 
106 106
         $route = $this->em->createQuery("SELECT r, l FROM Doctrine\Tests\Models\Routing\RoutingRoute r JOIN r.legs l WHERE r.id = ?1")
107
-                           ->setParameter(1, $routeId)
108
-                           ->getSingleResult();
107
+                            ->setParameter(1, $routeId)
108
+                            ->getSingleResult();
109 109
 
110 110
         self::assertEquals(2, count($route->legs));
111 111
         self::assertEquals("Berlin", $route->legs[0]->fromLocation->getName());
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Doctrine\Tests\ORM\Functional;
6 6
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/ClassTableInheritanceTest2.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
  * @ORM\DiscriminatorMap({"parent" = "CTIParent", "child" = "CTIChild"})
87 87
  */
88 88
 class CTIParent {
89
-   /**
89
+    /**
90 90
      * @ORM\Id @ORM\Column(type="integer")
91 91
      * @ORM\GeneratedValue(strategy="AUTO")
92 92
      */
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
  * @ORM\Entity @ORM\Table(name="cti_children")
114 114
  */
115 115
 class CTIChild extends CTIParent {
116
-   /**
116
+    /**
117 117
      * @ORM\Column(type="string")
118 118
      */
119 119
     private $data;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Doctrine\Tests\ORM\Functional;
6 6
 use Doctrine\Common\Collections\ArrayCollection;
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/SecondLevelCacheManyToOneTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Doctrine\Tests\ORM\Functional;
6 6
 
@@ -216,7 +216,7 @@  discard block
 block discarded – undo
216 216
         self::assertNull($this->cache->getEntityCacheRegion(ComplexAction::class));
217 217
         self::assertInstanceOf(Region::class, $this->cache->getEntityCacheRegion(Token::class));
218 218
 
219
-        $token  = new Token('token-hash');
219
+        $token = new Token('token-hash');
220 220
 
221 221
         $action1 = new Action('login');
222 222
         $action2 = new Action('logout');
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/DefaultValuesTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Doctrine\Tests\ORM\Functional;
6 6
 
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
      */
114 114
     public $address;
115 115
 
116
-    public function getId() {return $this->id;}
116
+    public function getId() {return $this->id; }
117 117
 }
118 118
 
119 119
 /**
@@ -155,5 +155,5 @@  discard block
 block discarded – undo
155 155
      */
156 156
     public $user;
157 157
 
158
-    public function getUser() {return $this->user;}
158
+    public function getUser() {return $this->user; }
159 159
 }
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/TypeValueSqlTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Doctrine\Tests\ORM\Functional;
6 6
 
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
         self::assertEquals('FOO', $this->em->getConnection()->fetchColumn("select named_lower_case_string from customtype_uppercases where id=".$entity->id.""), 'Database holds uppercase string');
73 73
 
74 74
 
75
-        $entity->namedLowerCaseString   = 'bar';
75
+        $entity->namedLowerCaseString = 'bar';
76 76
 
77 77
         $this->em->persist($entity);
78 78
         $this->em->flush();
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
 
131 131
         $this->em->clear();
132 132
 
133
-        $query = $this->em->createQuery("SELECT p, p.customInteger, c from Doctrine\Tests\Models\CustomType\CustomTypeParent p JOIN p.child c where p.id = " . $parentId);
133
+        $query = $this->em->createQuery("SELECT p, p.customInteger, c from Doctrine\Tests\Models\CustomType\CustomTypeParent p JOIN p.child c where p.id = ".$parentId);
134 134
 
135 135
         $result = $query->getResult();
136 136
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/EntityListenersTest.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Doctrine\Tests\ORM\Functional;
6 6
 
@@ -37,12 +37,12 @@  discard block
 block discarded – undo
37 37
         $fix = new CompanyFixContract();
38 38
         $fix->setFixPrice(2000);
39 39
 
40
-        $this->listener->preFlushCalls  = [];
40
+        $this->listener->preFlushCalls = [];
41 41
 
42 42
         $this->em->persist($fix);
43 43
         $this->em->flush();
44 44
 
45
-        self::assertCount(1,$this->listener->preFlushCalls);
45
+        self::assertCount(1, $this->listener->preFlushCalls);
46 46
         self::assertSame($fix, $this->listener->preFlushCalls[0][0]);
47 47
         self::assertInstanceOf(CompanyFixContract::class, $this->listener->preFlushCalls[0][0]);
48 48
         self::assertInstanceOf(PreFlushEventArgs::class, $this->listener->preFlushCalls[0][1]);
@@ -57,12 +57,12 @@  discard block
 block discarded – undo
57 57
         $this->em->flush();
58 58
         $this->em->clear();
59 59
 
60
-        $this->listener->postLoadCalls  = [];
60
+        $this->listener->postLoadCalls = [];
61 61
 
62 62
         $dql = "SELECT f FROM Doctrine\Tests\Models\Company\CompanyFixContract f WHERE f.id = ?1";
63 63
         $fix = $this->em->createQuery($dql)->setParameter(1, $fix->getId())->getSingleResult();
64 64
 
65
-        self::assertCount(1,$this->listener->postLoadCalls);
65
+        self::assertCount(1, $this->listener->postLoadCalls);
66 66
         self::assertSame($fix, $this->listener->postLoadCalls[0][0]);
67 67
         self::assertInstanceOf(CompanyFixContract::class, $this->listener->postLoadCalls[0][0]);
68 68
         self::assertInstanceOf(LifecycleEventArgs::class, $this->listener->postLoadCalls[0][1]);
@@ -73,12 +73,12 @@  discard block
 block discarded – undo
73 73
         $fix = new CompanyFixContract();
74 74
         $fix->setFixPrice(2000);
75 75
 
76
-        $this->listener->prePersistCalls  = [];
76
+        $this->listener->prePersistCalls = [];
77 77
 
78 78
         $this->em->persist($fix);
79 79
         $this->em->flush();
80 80
 
81
-        self::assertCount(1,$this->listener->prePersistCalls);
81
+        self::assertCount(1, $this->listener->prePersistCalls);
82 82
         self::assertSame($fix, $this->listener->prePersistCalls[0][0]);
83 83
         self::assertInstanceOf(CompanyFixContract::class, $this->listener->prePersistCalls[0][0]);
84 84
         self::assertInstanceOf(LifecycleEventArgs::class, $this->listener->prePersistCalls[0][1]);
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
         $this->em->persist($fix);
95 95
         $this->em->flush();
96 96
 
97
-        self::assertCount(1,$this->listener->postPersistCalls);
97
+        self::assertCount(1, $this->listener->postPersistCalls);
98 98
         self::assertSame($fix, $this->listener->postPersistCalls[0][0]);
99 99
         self::assertInstanceOf(CompanyFixContract::class, $this->listener->postPersistCalls[0][0]);
100 100
         self::assertInstanceOf(LifecycleEventArgs::class, $this->listener->postPersistCalls[0][1]);
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
         $this->em->persist($fix);
116 116
         $this->em->flush();
117 117
 
118
-        self::assertCount(1,$this->listener->preUpdateCalls);
118
+        self::assertCount(1, $this->listener->preUpdateCalls);
119 119
         self::assertSame($fix, $this->listener->preUpdateCalls[0][0]);
120 120
         self::assertInstanceOf(CompanyFixContract::class, $this->listener->preUpdateCalls[0][0]);
121 121
         self::assertInstanceOf(PreUpdateEventArgs::class, $this->listener->preUpdateCalls[0][1]);
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
         $this->em->persist($fix);
137 137
         $this->em->flush();
138 138
 
139
-        self::assertCount(1,$this->listener->postUpdateCalls);
139
+        self::assertCount(1, $this->listener->postUpdateCalls);
140 140
         self::assertSame($fix, $this->listener->postUpdateCalls[0][0]);
141 141
         self::assertInstanceOf(CompanyFixContract::class, $this->listener->postUpdateCalls[0][0]);
142 142
         self::assertInstanceOf(LifecycleEventArgs::class, $this->listener->postUpdateCalls[0][1]);
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
         $this->em->remove($fix);
156 156
         $this->em->flush();
157 157
 
158
-        self::assertCount(1,$this->listener->preRemoveCalls);
158
+        self::assertCount(1, $this->listener->preRemoveCalls);
159 159
         self::assertSame($fix, $this->listener->preRemoveCalls[0][0]);
160 160
         self::assertInstanceOf(CompanyFixContract::class, $this->listener->preRemoveCalls[0][0]);
161 161
         self::assertInstanceOf(LifecycleEventArgs::class, $this->listener->preRemoveCalls[0][1]);
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
         $this->em->remove($fix);
175 175
         $this->em->flush();
176 176
 
177
-        self::assertCount(1,$this->listener->postRemoveCalls);
177
+        self::assertCount(1, $this->listener->postRemoveCalls);
178 178
         self::assertSame($fix, $this->listener->postRemoveCalls[0][0]);
179 179
         self::assertInstanceOf(CompanyFixContract::class, $this->listener->postRemoveCalls[0][0]);
180 180
         self::assertInstanceOf(LifecycleEventArgs::class, $this->listener->postRemoveCalls[0][1]);
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/MergeProxiesTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Doctrine\Tests\ORM\Functional;
6 6
 
@@ -239,11 +239,11 @@  discard block
 block discarded – undo
239 239
     {
240 240
         $config = new Configuration();
241 241
 
242
-        $config->setProxyDir(realpath(__DIR__ . '/../../Proxies'));
242
+        $config->setProxyDir(realpath(__DIR__.'/../../Proxies'));
243 243
         $config->setProxyNamespace('Doctrine\Tests\Proxies');
244 244
         $config->setMetadataDriverImpl(
245 245
             $config->newDefaultAnnotationDriver([
246
-                realpath(__DIR__ . '/../../Models/Cache')
246
+                realpath(__DIR__.'/../../Models/Cache')
247 247
             ])
248 248
         );
249 249
         $config->setSQLLogger($logger);
Please login to merge, or discard this patch.