Passed
Pull Request — master (#17)
by
unknown
13:11 queued 03:05
created
src/Command/ImportConfigDiffCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -136,8 +136,8 @@  discard block
 block discarded – undo
136 136
                 '"' . $projectConfig[$addedKey] . '"');
137 137
         }
138 138
         foreach ($diff[self::CHANGED_KEY] as $key => $value) {
139
-            $output->writeln($key. ':' .
140
-                '"'.$defaultConfig[$key].'"' . ' | ' . $key . ':'. '"'.$projectConfig[$key].'"');
139
+            $output->writeln($key . ':' .
140
+                '"' . $defaultConfig[$key] . '"' . ' | ' . $key . ':' . '"' . $projectConfig[$key] . '"');
141 141
         }
142 142
     }
143 143
 
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
      * @param array $arr
181 181
      * @return array
182 182
      */
183
-    public function getDataAsFlatArray($data, string $key='', string $path='', array $arr=[]): array
183
+    public function getDataAsFlatArray($data, string $key = '', string $path = '', array $arr = []): array
184 184
     {
185 185
         if ($path != '') {
186 186
             $path = $path . '/';
Please login to merge, or discard this patch.