@@ -7,7 +7,7 @@ discard block |
||
7 | 7 | * @copyright (c) 2018, Sebastian Rapetti |
8 | 8 | * @license http://opensource.org/licenses/MIT MIT License |
9 | 9 | */ |
10 | -declare(strict_types = 1); |
|
10 | +declare(strict_types=1); |
|
11 | 11 | |
12 | 12 | namespace Linna\Filter\Rules; |
13 | 13 | |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | */ |
25 | 25 | protected function dateHaveNoTime(string $format): bool |
26 | 26 | { |
27 | - foreach (['a','A','B','g','G','h','H','i','s','u','v'] as $char) { |
|
27 | + foreach (['a', 'A', 'B', 'g', 'G', 'h', 'H', 'i', 's', 'u', 'v'] as $char) { |
|
28 | 28 | if (strpos($format, $char) !== false) { |
29 | 29 | return false; |
30 | 30 | } |