@@ -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 | * 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 |
@@ -3,7 +3,7 @@ discard block |
||
3 | 3 | /** |
4 | 4 | * Time service. |
5 | 5 | */ |
6 | -declare(strict_types=1); |
|
6 | +declare(strict_types = 1); |
|
7 | 7 | |
8 | 8 | namespace HDNET\Calendarize\Service\TimeTable; |
9 | 9 | |
@@ -241,7 +241,7 @@ discard block |
||
241 | 241 | */ |
242 | 242 | protected function getFrequencyLimitPerItem() |
243 | 243 | { |
244 | - $maxLimit = (int) ConfigurationUtility::get('frequencyLimitPerItem'); |
|
244 | + $maxLimit = (int)ConfigurationUtility::get('frequencyLimitPerItem'); |
|
245 | 245 | if ($maxLimit <= 0) { |
246 | 246 | $maxLimit = 300; |
247 | 247 | } |
@@ -3,7 +3,7 @@ |
||
3 | 3 | /** |
4 | 4 | * Group service. |
5 | 5 | */ |
6 | -declare(strict_types=1); |
|
6 | +declare(strict_types = 1); |
|
7 | 7 | |
8 | 8 | namespace HDNET\Calendarize\Service\TimeTable; |
9 | 9 |