@@ -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 | |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | { |
26 | 26 | settype($value, 'float'); |
27 | 27 | |
28 | - if (fmod((float)$value, 1.0) === 0.0) { |
|
28 | + if (fmod((float) $value, 1.0) === 0.0) { |
|
29 | 29 | settype($value, 'integer'); |
30 | 30 | } |
31 | 31 | } |