@@ -2,7 +2,7 @@ |
||
2 | 2 | |
3 | 3 | namespace Sample; |
4 | 4 | |
5 | -require_once __DIR__ . '/vendor/autoload.php'; |
|
5 | +require_once __DIR__.'/vendor/autoload.php'; |
|
6 | 6 | |
7 | 7 | /** |
8 | 8 | * Copyright 2015-2020 [email protected] |
@@ -48,7 +48,7 @@ |
||
48 | 48 | if (is_iterable($value) === true) { |
49 | 49 | foreach ($value as $key => $mightBeString) { |
50 | 50 | if (is_string($mightBeString) === true || is_numeric($mightBeString) === true) { |
51 | - $result[$key] = (int)$mightBeString; |
|
51 | + $result[$key] = (int) $mightBeString; |
|
52 | 52 | } else { |
53 | 53 | $reply = static::createErrorReply( |
54 | 54 | $context, |