@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace Itmedia\ZippyBusBundle\Factory; |
6 | 6 | |
@@ -58,11 +58,11 @@ discard block |
||
58 | 58 | { |
59 | 59 | $times = []; |
60 | 60 | foreach ($array['schedule']['minutes'] ?? [] as $minute) { |
61 | - $times[(int) $minute] = new StopTime((int)$minute, false); |
|
61 | + $times[(int)$minute] = new StopTime((int)$minute, false); |
|
62 | 62 | } |
63 | 63 | |
64 | 64 | foreach ($array['schedule']['partialMinutes'][0]['minutes'] ?? [] as $minute) { |
65 | - $times[(int) $minute] = new StopTime((int)$minute, true, $array['schedule']['partialMinutes'][0]['notes'] ?? ''); |
|
65 | + $times[(int)$minute] = new StopTime((int)$minute, true, $array['schedule']['partialMinutes'][0]['notes'] ?? ''); |
|
66 | 66 | } |
67 | 67 | |
68 | 68 | return new Stop( |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace Itmedia\ZippyBusBundle\Schedule; |
6 | 6 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace Itmedia\ZippyBusBundle\Schedule; |
6 | 6 |