@@ -10,6 +10,6 @@ |
||
10 | 10 | |
11 | 11 | public function setUp() |
12 | 12 | { |
13 | - $this->connection = DriverManager::getConnection( array( 'driver' => 'pdo_sqlite', 'memory' => true ) ); |
|
13 | + $this->connection = DriverManager::getConnection(array('driver' => 'pdo_sqlite', 'memory' => true)); |
|
14 | 14 | } |
15 | 15 | } |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -include_once(__DIR__.'/CommandTest.php'); |
|
3 | +include_once(__DIR__ . '/CommandTest.php'); |
|
4 | 4 | |
5 | 5 | use Symfony\Component\Console\Input\ArrayInput; |
6 | 6 | |
@@ -81,9 +81,9 @@ discard block |
||
81 | 81 | |
82 | 82 | public function goodDSLProvider() |
83 | 83 | { |
84 | - $dslDir = $this->dslDir.'/good'; |
|
84 | + $dslDir = $this->dslDir . '/good'; |
|
85 | 85 | $out = array(); |
86 | - foreach(scandir($dslDir) as $fileName) { |
|
86 | + foreach (scandir($dslDir) as $fileName) { |
|
87 | 87 | $filePath = $dslDir . '/' . $fileName; |
88 | 88 | if (is_file($filePath)) { |
89 | 89 | $out[] = array($filePath); |
@@ -94,9 +94,9 @@ discard block |
||
94 | 94 | |
95 | 95 | public function badDSLProvider() |
96 | 96 | { |
97 | - $dslDir = $this->dslDir.'/bad'; |
|
97 | + $dslDir = $this->dslDir . '/bad'; |
|
98 | 98 | $out = array(); |
99 | - foreach(scandir($dslDir) as $fileName) { |
|
99 | + foreach (scandir($dslDir) as $fileName) { |
|
100 | 100 | $filePath = $dslDir . '/' . $fileName; |
101 | 101 | if (is_file($filePath)) { |
102 | 102 | $out[] = array($filePath); |