Passed
Pull Request — 2.6 (#7889)
by Antonio J.
08:32
created
tests/Doctrine/Tests/ORM/Functional/SchemaTool/MySqlSchemaToolTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
     protected function setUp() {
12 12
         parent::setUp();
13 13
         if ($this->_em->getConnection()->getDatabasePlatform()->getName() !== 'mysql') {
14
-            $this->markTestSkipped('The ' . __CLASS__ .' requires the use of mysql.');
14
+            $this->markTestSkipped('The '.__CLASS__.' requires the use of mysql.');
15 15
         }
16 16
     }
17 17
 
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
             return $this->_em->getConnection()->getDatabasePlatform()->getColumnCollationDeclarationSQL($collation);
56 56
         }
57 57
 
58
-        return 'COLLATE ' . $collation;
58
+        return 'COLLATE '.$collation;
59 59
     }
60 60
 
61 61
     public function testGetCreateSchemaSql2()
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2182Test.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
             return $this->_em->getConnection()->getDatabasePlatform()->getColumnCollationDeclarationSQL($collation);
30 30
         }
31 31
 
32
-        return 'COLLATE ' . $collation;
32
+        return 'COLLATE '.$collation;
33 33
     }
34 34
 }
35 35
 
Please login to merge, or discard this patch.