Completed
Push — master ( 58280f...2a6740 )
by Gaetano
09:27
created
Tests/phpunit/CommandTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
 
29 29
     protected function tearDown()
30 30
     {
31
-        foreach($this->leftovers as $file) {
31
+        foreach ($this->leftovers as $file) {
32 32
             unlink($file);
33 33
         }
34 34
 
Please login to merge, or discard this patch.
Tests/phpunit/2_MigrateTest.php 1 patch
Spacing   +7 added lines, -7 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,13 +81,13 @@  discard block
 block discarded – undo
81 81
 
82 82
     public function goodDSLProvider()
83 83
     {
84
-        $dslDir = $this->dslDir.'/good';
85
-        if(!is_dir($dslDir)) {
84
+        $dslDir = $this->dslDir . '/good';
85
+        if (!is_dir($dslDir)) {
86 86
             return array();
87 87
         }
88 88
 
89 89
         $out = array();
90
-        foreach(scandir($dslDir) as $fileName) {
90
+        foreach (scandir($dslDir) as $fileName) {
91 91
             $filePath = $dslDir . '/' . $fileName;
92 92
             if (is_file($filePath)) {
93 93
                 $out[] = array($filePath);
@@ -98,13 +98,13 @@  discard block
 block discarded – undo
98 98
 
99 99
     public function badDSLProvider()
100 100
     {
101
-        $dslDir = $this->dslDir.'/bad';
102
-        if(!is_dir($dslDir)) {
101
+        $dslDir = $this->dslDir . '/bad';
102
+        if (!is_dir($dslDir)) {
103 103
             return array();
104 104
         }
105 105
 
106 106
         $out = array();
107
-        foreach(scandir($dslDir) as $fileName) {
107
+        foreach (scandir($dslDir) as $fileName) {
108 108
             $filePath = $dslDir . '/' . $fileName;
109 109
             if (is_file($filePath)) {
110 110
                 $out[] = array($filePath);
Please login to merge, or discard this patch.