Passed
Push — master ( c37c01...0b6156 )
by Alexandr
03:26
created
src/Service/OrderService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
     {
58 58
         $this->processOrderBasePath($basename);
59 59
 
60
-        $identifiers = array_map(static function (string $subject) {
60
+        $identifiers = array_map(static function(string $subject) {
61 61
             return [
62 62
                 'type' => 'dns',
63 63
                 'value' => $subject,
@@ -326,7 +326,7 @@  discard block
 block discarded – undo
326 326
         $basePath = $this->getCertificateBasePath($basename);
327 327
         $filesList = scandir($basePath);
328 328
         if ($filesList !== false) {
329
-            array_walk($filesList, static function (string $file) use ($basePath) {
329
+            array_walk($filesList, static function(string $file) use ($basePath) {
330 330
                 if (is_file($basePath . $file)) {
331 331
                     unlink($basePath . $file);
332 332
                 }
Please login to merge, or discard this patch.