Completed
Push — master ( 2c6719...58280f )
by Gaetano
11:02
created
Tests/phpunit/Core/BundleMigrationDBTestCase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,6 +10,6 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
Tests/phpunit/2_MigrateTest.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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);
Please login to merge, or discard this patch.