@@ -3,7 +3,7 @@ discard block |
||
3 | 3 | /** |
4 | 4 | * Time table builder service. |
5 | 5 | */ |
6 | -declare(strict_types=1); |
|
6 | +declare(strict_types = 1); |
|
7 | 7 | |
8 | 8 | namespace HDNET\Calendarize\Service; |
9 | 9 | |
@@ -174,7 +174,7 @@ discard block |
||
174 | 174 | } |
175 | 175 | /** @var \DateTime $base */ |
176 | 176 | $base = clone $record[$position . '_date']; |
177 | - if (\is_int($record[$position . '_time']) && (int) $record[$position . '_time'] > 0) { |
|
177 | + if (\is_int($record[$position . '_time']) && (int)$record[$position . '_time'] > 0) { |
|
178 | 178 | // Fix handling, if the time field contains a complete timestamp |
179 | 179 | $seconds = $record[$position . '_time'] % DateTimeUtility::SECONDS_DAY; |
180 | 180 | $base->setTime(0, 0, 0); |
@@ -3,7 +3,7 @@ |
||
3 | 3 | /** |
4 | 4 | * PrincipalBackendTypo3. |
5 | 5 | */ |
6 | -declare(strict_types=1); |
|
6 | +declare(strict_types = 1); |
|
7 | 7 | |
8 | 8 | namespace HDNET\Calendarize\Service\CalDav; |
9 | 9 |
@@ -3,7 +3,7 @@ discard block |
||
3 | 3 | /** |
4 | 4 | * Backend for events. |
5 | 5 | */ |
6 | -declare(strict_types=1); |
|
6 | +declare(strict_types = 1); |
|
7 | 7 | |
8 | 8 | namespace HDNET\Calendarize\Service\CalDav; |
9 | 9 | |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | $result = [ |
219 | 219 | 200 => [], // Ok |
220 | 220 | 403 => [], // Forbidden |
221 | - 424 => [], // Failed Dependency |
|
221 | + 424 => [], // Failed Dependency |
|
222 | 222 | ]; |
223 | 223 | |
224 | 224 | $hasError = false; |
@@ -3,7 +3,7 @@ |
||
3 | 3 | /** |
4 | 4 | * TYPO3 Auth backend. |
5 | 5 | */ |
6 | -declare(strict_types=1); |
|
6 | +declare(strict_types = 1); |
|
7 | 7 | |
8 | 8 | namespace HDNET\Calendarize\Service\CalDav; |
9 | 9 |
@@ -3,7 +3,7 @@ discard block |
||
3 | 3 | /** |
4 | 4 | * TimeSelectionWizard. |
5 | 5 | */ |
6 | -declare(strict_types=1); |
|
6 | +declare(strict_types = 1); |
|
7 | 7 | |
8 | 8 | namespace HDNET\Calendarize\Service; |
9 | 9 | |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | if ('' === $id && '' === $name) { |
35 | 35 | return ''; |
36 | 36 | } |
37 | - $times = $this->getTimes((int) $params['pid']); |
|
37 | + $times = $this->getTimes((int)$params['pid']); |
|
38 | 38 | if (!$times) { |
39 | 39 | return ''; |
40 | 40 | } |
@@ -3,7 +3,7 @@ |
||
3 | 3 | /** |
4 | 4 | * Recurrence service. |
5 | 5 | */ |
6 | -declare(strict_types=1); |
|
6 | +declare(strict_types = 1); |
|
7 | 7 | |
8 | 8 | namespace HDNET\Calendarize\Service; |
9 | 9 |
@@ -3,7 +3,7 @@ |
||
3 | 3 | /** |
4 | 4 | * Work on flex forms. |
5 | 5 | */ |
6 | -declare(strict_types=1); |
|
6 | +declare(strict_types = 1); |
|
7 | 7 | |
8 | 8 | namespace HDNET\Calendarize\Service; |
9 | 9 |
@@ -3,7 +3,7 @@ |
||
3 | 3 | /** |
4 | 4 | * External service. |
5 | 5 | */ |
6 | -declare(strict_types=1); |
|
6 | +declare(strict_types = 1); |
|
7 | 7 | |
8 | 8 | namespace HDNET\Calendarize\Service\TimeTable; |
9 | 9 |
@@ -3,7 +3,7 @@ |
||
3 | 3 | /** |
4 | 4 | * Abstract time table service. |
5 | 5 | */ |
6 | -declare(strict_types=1); |
|
6 | +declare(strict_types = 1); |
|
7 | 7 | |
8 | 8 | namespace HDNET\Calendarize\Service\TimeTable; |
9 | 9 |