@@ -26,7 +26,7 @@ |
||
26 | 26 | } |
27 | 27 | |
28 | 28 | $configuration = $this->getConfiguration(); |
29 | - $timeShift = isset($configuration['timeShift']) ? (int) $configuration['timeShift'] : 0; |
|
29 | + $timeShift = isset($configuration['timeShift']) ? (int)$configuration['timeShift'] : 0; |
|
30 | 30 | if ($timeShift <= 0) { |
31 | 31 | // shift is disabled |
32 | 32 | return; |
@@ -116,6 +116,6 @@ |
||
116 | 116 | )); |
117 | 117 | } |
118 | 118 | |
119 | - return (array) (new \ICal($absoluteIcalFile))->events(); |
|
119 | + return (array)(new \ICal($absoluteIcalFile))->events(); |
|
120 | 120 | } |
121 | 121 | } |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | |
68 | 68 | // climb thru the events and hide/delete them |
69 | 69 | foreach ($events as $event) { |
70 | - $uid = (int) $event['foreign_uid']; |
|
70 | + $uid = (int)$event['foreign_uid']; |
|
71 | 71 | |
72 | 72 | $model = $repository->findByUid($uid); |
73 | 73 | |
@@ -100,12 +100,12 @@ discard block |
||
100 | 100 | protected function processEvent(EventRepository $repository, Event $model, $modus) |
101 | 101 | { |
102 | 102 | // define the function for the delete-modus. |
103 | - $delete = function ($repository, $model) { |
|
103 | + $delete = function($repository, $model) { |
|
104 | 104 | $repository->remove($model); |
105 | 105 | }; |
106 | 106 | |
107 | 107 | // define the function for the hide-modus. |
108 | - $hide = function ($repository, $model) { |
|
108 | + $hide = function($repository, $model) { |
|
109 | 109 | $model->setHidden(true); |
110 | 110 | $repository->update($model); |
111 | 111 | }; |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | protected function findOutdatedEvents($tableName, $waitingPeriod) |
142 | 142 | { |
143 | 143 | // calculate the waiting time |
144 | - $interval = 'P' . (int) $waitingPeriod . 'D'; |
|
144 | + $interval = 'P' . (int)$waitingPeriod . 'D'; |
|
145 | 145 | $now = DateTimeUtility::getNow(); |
146 | 146 | $now->sub(new \DateInterval($interval)); |
147 | 147 |
@@ -21,7 +21,7 @@ |
||
21 | 21 | /** |
22 | 22 | * Build the timetable for the given configuration matrix (sorted). |
23 | 23 | * |
24 | - * @param array $ids |
|
24 | + * @param integer[] $ids |
|
25 | 25 | * |
26 | 26 | * @return array |
27 | 27 | */ |
@@ -174,7 +174,7 @@ |
||
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); |
@@ -35,6 +35,6 @@ |
||
35 | 35 | ], |
36 | 36 | ]; |
37 | 37 | |
38 | - return parent::renderLink($this->getPageUid($this->arguments['pageUid'], 'detailPid'), $additionalParams, (bool) $this->arguments['absolute']); |
|
38 | + return parent::renderLink($this->getPageUid($this->arguments['pageUid'], 'detailPid'), $additionalParams, (bool)$this->arguments['absolute']); |
|
39 | 39 | } |
40 | 40 | } |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | public function renderLink($pageUid = null, array $additionalParams = [], $absolute = false) |
54 | 54 | { |
55 | 55 | $uriBuilder = $this->controllerContext->getUriBuilder(); |
56 | - $this->lastHref = (string) $uriBuilder->reset() |
|
56 | + $this->lastHref = (string)$uriBuilder->reset() |
|
57 | 57 | ->setTargetPageUid($pageUid) |
58 | 58 | ->setArguments($additionalParams) |
59 | 59 | ->setCreateAbsoluteUri($absolute) |
@@ -80,17 +80,17 @@ discard block |
||
80 | 80 | protected function getPageUid($pageUid, $contextName = null) |
81 | 81 | { |
82 | 82 | if (MathUtility::canBeInterpretedAsInteger($pageUid) && $pageUid > 0) { |
83 | - return (int) $pageUid; |
|
83 | + return (int)$pageUid; |
|
84 | 84 | } |
85 | 85 | |
86 | 86 | // by settings |
87 | 87 | if ($contextName && $this->templateVariableContainer->exists('settings')) { |
88 | 88 | $settings = $this->templateVariableContainer->get('settings'); |
89 | 89 | if (isset($settings[$contextName]) && MathUtility::canBeInterpretedAsInteger($settings[$contextName])) { |
90 | - return (int) $settings[$contextName]; |
|
90 | + return (int)$settings[$contextName]; |
|
91 | 91 | } |
92 | 92 | } |
93 | 93 | |
94 | - return (int) $GLOBALS['TSFE']->id; |
|
94 | + return (int)$GLOBALS['TSFE']->id; |
|
95 | 95 | } |
96 | 96 | } |
@@ -52,7 +52,7 @@ |
||
52 | 52 | $this->arguments['index'], |
53 | 53 | $this->arguments['future'], |
54 | 54 | $this->arguments['past'], |
55 | - (int) $this->arguments['limit'], |
|
55 | + (int)$this->arguments['limit'], |
|
56 | 56 | $this->arguments['sort'], |
57 | 57 | $this->arguments['useIndexTime'] |
58 | 58 | ); |
@@ -22,7 +22,7 @@ |
||
22 | 22 | protected function getItems(\DateTime $date) |
23 | 23 | { |
24 | 24 | $months = []; |
25 | - $date->setDate((int) $date->format('Y'), (int) $date->format('n'), 1); |
|
25 | + $date->setDate((int)$date->format('Y'), (int)$date->format('n'), 1); |
|
26 | 26 | for ($i = 0; $i < 12; ++$i) { |
27 | 27 | $months[$date->format('n')] = [ |
28 | 28 | 'week' => $date->format('n'), |
@@ -38,8 +38,8 @@ |
||
38 | 38 | $dateClone->modify('first day of this month'); |
39 | 39 | |
40 | 40 | $monthCheck = $dateClone->format('m'); |
41 | - while ((int) $monthCheck === (int) $dateClone->format('m')) { |
|
42 | - $week = (int) $dateClone->format('W'); |
|
41 | + while ((int)$monthCheck === (int)$dateClone->format('m')) { |
|
42 | + $week = (int)$dateClone->format('W'); |
|
43 | 43 | if (!isset($weeks[$week])) { |
44 | 44 | $weeks[$week] = [ |
45 | 45 | 'week' => $week, |