Passed
Branch master (cd96a9)
by Geert
03:26
created
Category
src/SalesPeriods.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@
 block discarded – undo
90 90
 
91 91
             if ($periodFiles !== false) {
92 92
                 $periodClasses = array_diff($periodFiles, array('.', '..'));
93
-                $periodClasses = array_map(function ($value) {
93
+                $periodClasses = array_map(function($value) {
94 94
                     return str_replace('.php', '', $value);
95 95
                 }, $periodClasses);
96 96
 
Please login to merge, or discard this patch.
src/Regions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
 
28 28
         $output = [];
29 29
         if ($availableRegions !== false) {
30
-            $output = array_map(function ($regionPath) {
30
+            $output = array_map(function($regionPath) {
31 31
                 return substr($regionPath, strrpos($regionPath, DIRECTORY_SEPARATOR) + 1);
32 32
             }, $availableRegions);
33 33
         }
Please login to merge, or discard this patch.