Failed Conditions
CANCELLED  
Pull Request — master (#7095)
by Benjamin
10:13
created
tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1595Test.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\Ticket;
6 6
 
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
         $sqlLogger  = $this->em->getConnection()->getConfiguration()->getSQLLogger();
40 40
         $repository = $this->em->getRepository(DDC1595InheritedEntity1::class);
41 41
 
42
-        $entity1  = $repository->find($e1->id);
42
+        $entity1 = $repository->find($e1->id);
43 43
 
44 44
         // DDC-1596
45 45
         self::assertSQLEquals(
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
 
57 57
         $this->em->clear();
58 58
 
59
-        $entity1  = $repository->find($e1->id);
59
+        $entity1 = $repository->find($e1->id);
60 60
 
61 61
         $entity1->getEntities()->count();
62 62
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3192Test.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\Ticket;
6 6
 
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 
21 21
         if (Type::hasType('ddc3192_currency_code')) {
22 22
             $this->fail(
23
-                'Type ddc3192_currency_code exists for testing DDC-3192 only, ' .
23
+                'Type ddc3192_currency_code exists for testing DDC-3192 only, '.
24 24
                 'but it has already been registered for some reason'
25 25
             );
26 26
         }
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
         $this->em->close();
58 58
 
59 59
         $query = $this->em->createQuery();
60
-        $query->setDQL('SELECT t FROM ' . DDC3192Transaction::class . ' t WHERE t.id = ?1');
60
+        $query->setDQL('SELECT t FROM '.DDC3192Transaction::class.' t WHERE t.id = ?1');
61 61
         $query->setParameter(1, $transaction->id);
62 62
 
63 63
         $resultByQuery = $query->getSingleResult();
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3644Test.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\Ticket;
6 6
 
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
 
165 165
         $this->addresses = $addresses;
166 166
 
167
-        $addresses->map(function ($address) use ($self) {
167
+        $addresses->map(function($address) use ($self) {
168 168
             $address->user = $self;
169 169
         });
170 170
     }
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
 
176 176
         $this->pets = $pets;
177 177
 
178
-        $pets->map(function ($pet) use ($self) {
178
+        $pets->map(function($pet) use ($self) {
179 179
             $pet->owner = $self;
180 180
         });
181 181
     }
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1998Test.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\Ticket;
6 6
 
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
      */
75 75
     public function convertToDatabaseValue($value, AbstractPlatform $platform)
76 76
     {
77
-        return (string)$value;
77
+        return (string) $value;
78 78
     }
79 79
 
80 80
     public function convertToPhpValue($value, AbstractPlatform $platform)
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/Ticket/DDC440Test.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\Ticket;
6 6
 
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
         return $this->number;
118 118
     }
119 119
 
120
-    public function setClient(DDC440Client $value, $update_inverse=true)
120
+    public function setClient(DDC440Client $value, $update_inverse = true)
121 121
     {
122 122
         $this->client = $value;
123 123
         if ($update_inverse) {
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3170Test.php 2 patches
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -50,19 +50,19 @@
 block discarded – undo
50 50
         $this->em->clear();
51 51
 
52 52
         $result = $this->em->createQueryBuilder()
53
-                  ->select('p')
54
-                  ->from(DDC3170ProductJoined::class, 'p')
55
-                  ->getQuery()
56
-                  ->getResult(AbstractQuery::HYDRATE_SIMPLEOBJECT);
53
+                    ->select('p')
54
+                    ->from(DDC3170ProductJoined::class, 'p')
55
+                    ->getQuery()
56
+                    ->getResult(AbstractQuery::HYDRATE_SIMPLEOBJECT);
57 57
 
58 58
         self::assertCount(1, $result);
59 59
         self::assertContainsOnly(DDC3170ProductJoined::class, $result);
60 60
 
61 61
         $result = $this->em->createQueryBuilder()
62
-                  ->select('p')
63
-                  ->from(DDC3170ProductSingleTable::class, 'p')
64
-                  ->getQuery()
65
-                  ->getResult(AbstractQuery::HYDRATE_SIMPLEOBJECT);
62
+                    ->select('p')
63
+                    ->from(DDC3170ProductSingleTable::class, 'p')
64
+                    ->getQuery()
65
+                    ->getResult(AbstractQuery::HYDRATE_SIMPLEOBJECT);
66 66
 
67 67
         self::assertCount(1, $result);
68 68
         self::assertContainsOnly(DDC3170ProductSingleTable::class, $result);
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\Ticket;
6 6
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2084Test.php 1 patch
Spacing   +7 added lines, -7 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\Ticket;
6 6
 
@@ -16,8 +16,8 @@  discard block
 block discarded – undo
16 16
         try {
17 17
             $this->schemaTool->createSchema(
18 18
                 [
19
-                $this->em->getClassMetadata(__NAMESPACE__ . '\DDC2084\MyEntity1'),
20
-                $this->em->getClassMetadata(__NAMESPACE__ . '\DDC2084\MyEntity2'),
19
+                $this->em->getClassMetadata(__NAMESPACE__.'\DDC2084\MyEntity1'),
20
+                $this->em->getClassMetadata(__NAMESPACE__.'\DDC2084\MyEntity2'),
21 21
                 ]
22 22
             );
23 23
         } catch (\Exception $exc) {
@@ -44,10 +44,10 @@  discard block
 block discarded – undo
44 44
     {
45 45
         $e1 = $this->loadFixture();
46 46
         $e2 = $e1->getMyEntity2();
47
-        $e  = $this->em->find(__NAMESPACE__ . '\DDC2084\MyEntity1', $e2);
47
+        $e  = $this->em->find(__NAMESPACE__.'\DDC2084\MyEntity1', $e2);
48 48
 
49
-        self::assertInstanceOf(__NAMESPACE__ . '\DDC2084\MyEntity1', $e);
50
-        self::assertInstanceOf(__NAMESPACE__ . '\DDC2084\MyEntity2', $e->getMyEntity2());
49
+        self::assertInstanceOf(__NAMESPACE__.'\DDC2084\MyEntity1', $e);
50
+        self::assertInstanceOf(__NAMESPACE__.'\DDC2084\MyEntity2', $e->getMyEntity2());
51 51
         self::assertEquals('Foo', $e->getMyEntity2()->getValue());
52 52
     }
53 53
 
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
      */
58 58
     public function testinvalidIdentifierBindingEntityException()
59 59
     {
60
-        $this->em->find(__NAMESPACE__ . '\DDC2084\MyEntity1', new DDC2084\MyEntity2('Foo'));
60
+        $this->em->find(__NAMESPACE__.'\DDC2084\MyEntity1', new DDC2084\MyEntity2('Foo'));
61 61
     }
62 62
 }
63 63
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1436Test.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\Ticket;
6 6
 
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
         // step 1
44 44
         $page = $this->em
45
-                ->createQuery('SELECT p, parent FROM ' . __NAMESPACE__ . '\DDC1436Page p LEFT JOIN p.parent parent WHERE p.id = :id')
45
+                ->createQuery('SELECT p, parent FROM '.__NAMESPACE__.'\DDC1436Page p LEFT JOIN p.parent parent WHERE p.id = :id')
46 46
                 ->setParameter('id', $id)
47 47
                 ->getOneOrNullResult();
48 48
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2224Test.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\Ticket;
6 6
 
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
 
23 23
     public function testIssue()
24 24
     {
25
-        $dql = 'SELECT e FROM ' . __NAMESPACE__ . '\DDC2224Entity e WHERE e.field = :field';
25
+        $dql = 'SELECT e FROM '.__NAMESPACE__.'\DDC2224Entity e WHERE e.field = :field';
26 26
         $query = $this->em->createQuery($dql);
27 27
         $query->setQueryCacheDriver(new ArrayCache());
28 28
 
Please login to merge, or discard this patch.