Completed
Push — master ( cdef91...bfb886 )
by Klaus
22s queued 19s
created
Tests/ProcessorTest.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -167,6 +167,10 @@
 block discarded – undo
167 167
         $this->assertFileEquals($dataDir.'/expected.' . $fileType, $workingDir.'/'.$testCase['config']['file'], $testCase['title']);
168 168
     }
169 169
 
170
+    /**
171
+     * @param string $dataDir
172
+     * @param string $workingDir
173
+     */
170 174
     private function initializeTestCase(array $testCase, $dataDir, $workingDir, $fileType)
171 175
     {
172 176
         $fs = new Filesystem();
Please login to merge, or discard this patch.
Tests/fixtures/testcases/php/custom_dist_file/existing.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 // This file is auto-generated during the composer install
3 3
 return array (
4
-  'parameters' =>
5
-  array (
4
+    'parameters' =>
5
+    array (
6 6
     'foo' => 'bar',
7 7
     'boolean' => false,
8
-  ),
8
+    ),
9 9
 );
Please login to merge, or discard this patch.
Tests/fixtures/testcases/php/custom_dist_file/expected.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 // This file is auto-generated during the composer install
3 3
 return array (
4
-  'parameters' => 
5
-  array (
4
+    'parameters' => 
5
+    array (
6 6
     'foo' => 'bar',
7 7
     'boolean' => false,
8
-  ),
8
+    ),
9 9
 );
Please login to merge, or discard this patch.
Tests/fixtures/testcases/php/existent/expected.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,15 +1,15 @@
 block discarded – undo
1 1
 <?php
2 2
 // This file is auto-generated during the composer install
3 3
 return array (
4
-  'parameters' => 
5
-  array (
4
+    'parameters' => 
5
+    array (
6 6
     'foo' => 'existing_foo',
7 7
     'boolean' => false,
8 8
     'another' => NULL,
9 9
     'nested' => 
10 10
     array (
11
-      'foo' => 'bar',
12
-      'bar' => 'baz',
11
+        'foo' => 'bar',
12
+        'bar' => 'baz',
13
+    ),
13 14
     ),
14
-  ),
15 15
 );
Please login to merge, or discard this patch.
Tests/fixtures/testcases/php/existent_empty/expected.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 // This file is auto-generated during the composer install
3 3
 return array (
4
-  'parameters' => 
5
-  array (
4
+    'parameters' => 
5
+    array (
6 6
     'foo' => 'bar',
7
-  ),
7
+    ),
8 8
 );
Please login to merge, or discard this patch.