Completed
Pull Request — 2.6 (#8015)
by
unknown
06:46
created
tests/Doctrine/Tests/ORM/Functional/SchemaTool/DBAL483Test.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
 
28 28
         $updateSql = $this->schemaTool->getUpdateSchemaSql([$class]);
29 29
 
30
-        $updateSql = array_filter($updateSql, function ($sql) {
30
+        $updateSql = array_filter($updateSql, function($sql) {
31 31
             return strpos($sql, 'DBAL483') !== false;
32 32
         });
33 33
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/SchemaTool/PostgreSqlSchemaToolTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
         parent::setUp();
14 14
 
15 15
         if ($this->_em->getConnection()->getDatabasePlatform()->getName() !== 'postgresql') {
16
-            $this->markTestSkipped('The ' . __CLASS__ .' requires the use of postgresql.');
16
+            $this->markTestSkipped('The '.__CLASS__.' requires the use of postgresql.');
17 17
         }
18 18
     }
19 19
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/SequenceGeneratorTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
                     $this->_em->getClassMetadata(SequenceEntity::class),
25 25
                 ]
26 26
             );
27
-        } catch(\Exception $e) {
27
+        } catch (\Exception $e) {
28 28
         }
29 29
     }
30 30
 
Please login to merge, or discard this patch.
Doctrine/Tests/ORM/Functional/OneToManyBidirectionalAssociationTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -182,7 +182,7 @@
 block discarded – undo
182 182
     {
183 183
         $this->_createFixture();
184 184
 
185
-        $product  = $this->_em->find(ECommerceProduct::class, $this->product->getId());
185
+        $product = $this->_em->find(ECommerceProduct::class, $this->product->getId());
186 186
 
187 187
         $thirdFeature = new ECommerceFeature();
188 188
         $thirdFeature->setDescription('Model writing tutorial');
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1461Test.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
                 $this->_em->getClassMetadata(DDC1461User::class)
19 19
                 ]
20 20
             );
21
-        } catch(\Exception $e) {
21
+        } catch (\Exception $e) {
22 22
 
23 23
         }
24 24
     }
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1392Test.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
 
58 58
         $em->flush();
59 59
 
60
-        $q = $this->_em->createQuery("SELECT COUNT(e) FROM " . __NAMESPACE__ . '\DDC1392File e');
60
+        $q = $this->_em->createQuery("SELECT COUNT(e) FROM ".__NAMESPACE__.'\DDC1392File e');
61 61
         $result = $q->getSingleScalarResult();
62 62
 
63 63
         self::assertEquals(1, $result);
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1225Test.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -26,9 +26,9 @@
 block discarded – undo
26 26
     {
27 27
         $qb = $this->_em->createQueryBuilder();
28 28
         $qb->from(DDC1225_TestEntity1::class, 'te1')
29
-           ->select('te1')
30
-           ->where('te1.testEntity2 = ?1')
31
-           ->setParameter(1, 0);
29
+            ->select('te1')
30
+            ->where('te1.testEntity2 = ?1')
31
+            ->setParameter(1, 0);
32 32
 
33 33
         $this->assertEquals(
34 34
             strtolower('SELECT t0_.test_entity2_id AS test_entity2_id_0 FROM te1 t0_ WHERE t0_.test_entity2_id = ?'),
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
                 $this->_em->getClassMetadata(DDC1225_TestEntity2::class),
18 18
                 ]
19 19
             );
20
-        } catch(\PDOException $e) {
20
+        } catch (\PDOException $e) {
21 21
 
22 22
         }
23 23
     }
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2214Test.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
 
46 46
         $related = $this
47 47
             ->_em
48
-            ->createQuery('SELECT b FROM '.__NAMESPACE__ . '\DDC2214Bar b WHERE b.id IN(:ids)')
48
+            ->createQuery('SELECT b FROM '.__NAMESPACE__.'\DDC2214Bar b WHERE b.id IN(:ids)')
49 49
             ->setParameter('ids', [$bar])
50 50
             ->getResult();
51 51
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1209Test.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
                     $this->_em->getClassMetadata(DDC1209_3::class)
18 18
                 ]
19 19
             );
20
-        } catch(\Exception $e) {
20
+        } catch (\Exception $e) {
21 21
         }
22 22
     }
23 23
 
Please login to merge, or discard this patch.