Passed
Pull Request — master (#1)
by Alexandr
03:34
created
src/Service/OrderService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
 
61 61
         $this->processOrderBasePath($directoryName);
62 62
 
63
-        $identifiers = array_map(static function (string $subject) {
63
+        $identifiers = array_map(static function(string $subject) {
64 64
             return [
65 65
                 'type' => 'dns',
66 66
                 'value' => $subject,
@@ -344,7 +344,7 @@  discard block
 block discarded – undo
344 344
 
345 345
         $filesList = scandir($basePath);
346 346
         if ($filesList !== false) {
347
-            array_walk($filesList, static function (string $file) use ($basePath) {
347
+            array_walk($filesList, static function(string $file) use ($basePath) {
348 348
                 if (is_file($basePath . $file)) {
349 349
                     unlink($basePath . $file);
350 350
                 }
Please login to merge, or discard this patch.