| @@ -30,7 +30,7 @@ | ||
| 30 | 30 | |
| 31 | 31 | $ids = []; | 
| 32 | 32 |          foreach ($rows as $row) { | 
| 33 | - $ids[] = (int) $row['uid']; | |
| 33 | + $ids[] = (int)$row['uid']; | |
| 34 | 34 | } | 
| 35 | 35 | |
| 36 | 36 | return $ids; | 
| @@ -36,7 +36,7 @@ | ||
| 36 | 36 | } | 
| 37 | 37 | |
| 38 | 38 | $days = []; | 
| 39 | -        $move = (int) ($date->format('N') - ((int) $this->arguments['weekStartsAt'])); | |
| 39 | +        $move = (int)($date->format('N') - ((int)$this->arguments['weekStartsAt'])); | |
| 40 | 40 |          $date->modify('-' . $move . ' days'); | 
| 41 | 41 | $inWeek = false; | 
| 42 | 42 |          for ($i = 0; $i < 7; ++$i) { | 
| @@ -21,7 +21,7 @@ | ||
| 21 | 21 |      { | 
| 22 | 22 |          $daysInMonth = $date->format('t'); | 
| 23 | 23 | $days = []; | 
| 24 | -        $move = (int) ($date->format('j') - 1); | |
| 24 | +        $move = (int)($date->format('j') - 1); | |
| 25 | 25 |          $date->modify('-' . $move . ' days'); | 
| 26 | 26 | |
| 27 | 27 |          for ($i = 0; $i < $daysInMonth; ++$i) { | 
| @@ -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; | 
| @@ -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 | } | 
| @@ -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, | 
| @@ -30,7 +30,7 @@ | ||
| 30 | 30 | */ | 
| 31 | 31 | public function render() | 
| 32 | 32 |      { | 
| 33 | - $content = null === $this->arguments['content'] || '' === \trim((string) $this->arguments['content']) ? $this->renderChildren() : $this->arguments['content']; | |
| 33 | + $content = null === $this->arguments['content'] || '' === \trim((string)$this->arguments['content']) ? $this->renderChildren() : $this->arguments['content']; | |
| 34 | 34 | |
| 35 | 35 | return GeneralUtility::quoteJSvalue($content); | 
| 36 | 36 | } |