@@ -11,7 +11,7 @@ discard block |
||
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 |
||
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() |
@@ -29,7 +29,7 @@ |
||
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 |