Passed
Pull Request — master (#14)
by
unknown
04:46
created
src/PathParserTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
     private function parsePath(string $path): array
20 20
     {
21 21
         return array_map(
22
-            function (string $key) {
22
+            function(string $key) {
23 23
                 return ctype_digit($key) && (strlen($key) === 1 || substr($key, 0, 1) !== "0")
24 24
                     ? intval($key)
25 25
                     : $key;
Please login to merge, or discard this patch.