Completed
Pull Request — master (#352)
by René
02:19
created
Classes/Controller/AbstractController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@
 block discarded – undo
95 95
      * Send the content type header and the right file extension in front of the content.
96 96
      *
97 97
      * @param $contentType
98
-     * @param $fileExtension
98
+     * @param string $fileExtension
99 99
      */
100 100
     protected function sendHeaderAndFilename($contentType, $fileExtension)
101 101
     {
Please login to merge, or discard this patch.
Classes/Domain/Repository/IndexRepository.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
      * Find List.
69 69
      *
70 70
      * @param int        $limit
71
-     * @param int|string $listStartTime
71
+     * @param integer $listStartTime
72 72
      * @param int        $startOffsetHours
73 73
      * @param int        $overrideStartDate
74 74
      * @param int        $overrideEndDate
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
      * Find by traversing information.
204 204
      *
205 205
      * @param DomainObjectInterface $event
206
-     * @param bool|true             $future
206
+     * @param boolean             $future
207 207
      * @param bool|false            $past
208 208
      * @param int                   $limit
209 209
      * @param string                $sort
Please login to merge, or discard this patch.
Classes/Service/ContentElementLayoutService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
      * Add one row to the table.
40 40
      *
41 41
      * @param string $label
42
-     * @param mixed  $value
42
+     * @param string  $value
43 43
      */
44 44
     public function addRow($label, $value)
45 45
     {
Please login to merge, or discard this patch.
Classes/Service/TimeTableService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
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
      */
Please login to merge, or discard this patch.
Classes/Command/AbstractCommandController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     /**
28 28
      * Adds a message to the FlashMessageQueue or prints it to the CLI.
29 29
      *
30
-     * @param mixed  $message
30
+     * @param string  $message
31 31
      * @param string $title
32 32
      * @param int    $severity
33 33
      */
Please login to merge, or discard this patch.
Classes/Updates/CalMigrationUpdate.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -409,7 +409,7 @@  discard block
 block discarded – undo
409 409
     /**
410 410
      * Update event with configuration.
411 411
      *
412
-     * @param $eventImportId
412
+     * @param string $eventImportId
413 413
      * @param $configuration
414 414
      * @param $dbQueries
415 415
      * @param $customMessages
@@ -531,7 +531,7 @@  discard block
 block discarded – undo
531 531
     /**
532 532
      * Find event by import ID.
533 533
      *
534
-     * @param $eventImportId
534
+     * @param string $eventImportId
535 535
      * @param $dbQueries
536 536
      * @param $customMessages
537 537
      *
Please login to merge, or discard this patch.
Classes/Utility/DateTimeUtility.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -153,7 +153,6 @@  discard block
 block discarded – undo
153 153
     /**
154 154
      * Normalize quartar.
155 155
      *
156
-     * @param int|null $quarter
157 156
      *
158 157
      * @return int
159 158
      */
@@ -234,7 +233,7 @@  discard block
 block discarded – undo
234 233
     /**
235 234
      * Get the End of the given day.
236 235
      *
237
-     * @param int|string|\DateTime|null $dateInformation
236
+     * @param \DateTime $dateInformation
238 237
      *
239 238
      * @return \DateTime
240 239
      */
Please login to merge, or discard this patch.