Completed
Push — master ( f4c848...d31188 )
by Jonathan
24s queued 17s
created
tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1436Test.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
 
44 44
         // step 1
45 45
         $page = $this->em
46
-                ->createQuery('SELECT p, parent FROM ' . __NAMESPACE__ . '\DDC1436Page p LEFT JOIN p.parent parent WHERE p.id = :id')
46
+                ->createQuery('SELECT p, parent FROM '.__NAMESPACE__.'\DDC1436Page p LEFT JOIN p.parent parent WHERE p.id = :id')
47 47
                 ->setParameter('id', $id)
48 48
                 ->getOneOrNullResult();
49 49
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1884Test.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -144,7 +144,7 @@
 block discarded – undo
144 144
     {
145 145
         $qb = $this->em->createQueryBuilder();
146 146
 
147
-        $result =  $qb->select('r, d, c')
147
+        $result = $qb->select('r, d, c')
148 148
             ->from(PaidRide::class, 'r')
149 149
             ->leftJoin('r.driver', 'd')
150 150
             ->leftJoin('r.car', 'c')
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/Ticket/DDC512Test.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
         $this->em->flush();
35 35
         $this->em->clear();
36 36
 
37
-        $q      = $this->em->createQuery('select u,i from ' . __NAMESPACE__ . '\\DDC512Customer u left join u.item i');
37
+        $q      = $this->em->createQuery('select u,i from '.__NAMESPACE__.'\\DDC512Customer u left join u.item i');
38 38
         $result = $q->getResult();
39 39
 
40 40
         self::assertCount(2, $result);
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/Ticket/DDC279Test.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
         $this->em->clear();
47 47
 
48 48
         $query = $this->em->createQuery(
49
-            'SELECT x, y, z FROM Doctrine\Tests\ORM\Functional\Ticket\DDC279EntityX x ' .
49
+            'SELECT x, y, z FROM Doctrine\Tests\ORM\Functional\Ticket\DDC279EntityX x '.
50 50
             'INNER JOIN x.y y INNER JOIN y.z z WHERE x.id = ?1'
51 51
         )->setParameter(1, $x->id);
52 52
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/Ticket/GH6402Test.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
     {
36 36
         $id = $this->createAddress();
37 37
 
38
-        $addresses = $this->em->createQuery('SELECT a FROM ' . Address::class . ' a WHERE a.id = :id')
38
+        $addresses = $this->em->createQuery('SELECT a FROM '.Address::class.' a WHERE a.id = :id')
39 39
             ->setParameter('id', $id)
40 40
             ->getResult();
41 41
 
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
     {
57 57
         $id = $this->createFullAddress();
58 58
 
59
-        $addresses = $this->em->createQuery('SELECT a FROM ' . FullAddress::class . ' a WHERE a.id = :id')
59
+        $addresses = $this->em->createQuery('SELECT a FROM '.FullAddress::class.' a WHERE a.id = :id')
60 60
             ->setParameter('id', $id)
61 61
             ->getResult();
62 62
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1300Test.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
         $this->em->flush();
43 43
 
44 44
         $query  = $this->em->createQuery('SELECT f, fl FROM Doctrine\Tests\ORM\Functional\Ticket\DDC1300Foo f JOIN f.fooLocaleRefFoo fl');
45
-        $result =  $query->getResult();
45
+        $result = $query->getResult();
46 46
 
47 47
         self::assertCount(1, $result);
48 48
     }
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/Ticket/DDC371Test.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
         $this->em->flush();
46 46
         $this->em->clear();
47 47
 
48
-        $children = $this->em->createQuery('select c,p from ' . __NAMESPACE__ . '\DDC371Child c '
48
+        $children = $this->em->createQuery('select c,p from '.__NAMESPACE__.'\DDC371Child c '
49 49
                 . 'left join c.parent p where c.id = 1 and p.id = 1')
50 50
                 ->setHint(Query::HINT_REFRESH, true)
51 51
                 ->getResult();
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/Ticket/Issue5989Test.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 
31 31
         $employee = new Issue5989Employee();
32 32
 
33
-        $employeeTags   =['tag2', 'tag3'];
33
+        $employeeTags   = ['tag2', 'tag3'];
34 34
         $employee->tags = $employeeTags;
35 35
         $this->em->persist($employee);
36 36
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1695Test.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
 
24 24
     public function testIssue() : void
25 25
     {
26
-        $dql = 'SELECT n.smallText, n.publishDate FROM ' . __NAMESPACE__ . '\\DDC1695News n';
26
+        $dql = 'SELECT n.smallText, n.publishDate FROM '.__NAMESPACE__.'\\DDC1695News n';
27 27
         $sql = $this->em->createQuery($dql)->getSQL();
28 28
 
29 29
         self::assertEquals(
Please login to merge, or discard this patch.