Passed
Push — master ( 7443fb...580164 )
by Pierre
01:31
created
src/FileManager.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
         for ($c = 0; $c < $toDeleteCount; $c++) {
165 165
             $opStatus[] = (int) @unlink($toDelete[$c]);
166 166
         }
167
-        $status = array_reduce($opStatus, function ($car, $ite) {
167
+        $status = array_reduce($opStatus, function($car, $ite) {
168 168
             return $car += $ite;
169 169
         });
170 170
         return ($status > 0);
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
         for ($c = 0; $c < $toDeleteCount; $c++) {
185 185
             $opStatus[] = (int) $this->deleteFolder($toDelete[$c]);
186 186
         }
187
-        $status = array_reduce($opStatus, function ($car, $ite) {
187
+        $status = array_reduce($opStatus, function($car, $ite) {
188 188
             return $car += $ite;
189 189
         });
190 190
         return ($status > 0);
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
             }
212 212
         }
213 213
         $opStatus[] = (int) @rmdir($path);
214
-        $status = array_reduce($opStatus, function ($car, $ite) {
214
+        $status = array_reduce($opStatus, function($car, $ite) {
215 215
             return $car += $ite;
216 216
         });
217 217
         return $status;
Please login to merge, or discard this patch.