Completed
Pull Request — master (#580)
by Pascale
02:22
created
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/Controller/AbstractController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
      * Send the content type header and the right file extension in front of the content.
110 110
      *
111 111
      * @param $contentType
112
-     * @param $fileExtension
112
+     * @param string $fileExtension
113 113
      */
114 114
     protected function sendHeaderAndFilename($contentType, $fileExtension)
115 115
     {
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
     /**
225 225
      * Add cache tags.
226 226
      *
227
-     * @param array $tags
227
+     * @param string[] $tags
228 228
      */
229 229
     protected function addCacheTags(array $tags)
230 230
     {
Please login to merge, or discard this patch.
Classes/Controller/BackendController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -130,7 +130,7 @@
 block discarded – undo
130 130
      * Check if access to page is allowed for current user.
131 131
      *
132 132
      * @param int   $pageId
133
-     * @param array $mountPoints
133
+     * @param integer[] $mountPoints
134 134
      *
135 135
      * @return bool
136 136
      */
Please login to merge, or discard this patch.
Classes/Updates/CalMigrationUpdate.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -564,7 +564,7 @@  discard block
 block discarded – undo
564 564
     /**
565 565
      * Update event with configuration.
566 566
      *
567
-     * @param $eventImportId
567
+     * @param string $eventImportId
568 568
      * @param $configuration
569 569
      * @param $dbQueries
570 570
      * @param $customMessages
@@ -689,7 +689,7 @@  discard block
 block discarded – undo
689 689
     /**
690 690
      * Find event by import ID.
691 691
      *
692
-     * @param $eventImportId
692
+     * @param string $eventImportId
693 693
      * @param $dbQueries
694 694
      * @param $customMessages
695 695
      *
@@ -762,7 +762,7 @@  discard block
 block discarded – undo
762 762
      * Get exception configuration for exception group.
763 763
      *
764 764
      * @param       $groupId
765
-     * @param array $dbQueries
765
+     * @param string[] $dbQueries
766 766
      *
767 767
      * @return string
768 768
      */
Please login to merge, or discard this patch.
Classes/Domain/Repository/IndexRepository.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
     /**
77 77
      * Set the index types.
78 78
      *
79
-     * @param array $types
79
+     * @param string[] $types
80 80
      */
81 81
     public function setIndexTypes(array $types)
82 82
     {
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
     /**
87 87
      * Override page IDs.
88 88
      *
89
-     * @param array $overridePageIds
89
+     * @param integer[] $overridePageIds
90 90
      */
91 91
     public function setOverridePageIds($overridePageIds)
92 92
     {
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
      * Find List.
137 137
      *
138 138
      * @param int        $limit
139
-     * @param int|string $listStartTime
139
+     * @param integer $listStartTime
140 140
      * @param int        $startOffsetHours
141 141
      * @param int        $overrideStartDate
142 142
      * @param int        $overrideEndDate
@@ -335,7 +335,7 @@  discard block
 block discarded – undo
335 335
      * Find by traversing information.
336 336
      *
337 337
      * @param Index      $index
338
-     * @param bool|true  $future
338
+     * @param boolean  $future
339 339
      * @param bool|false $past
340 340
      * @param int        $limit
341 341
      * @param string     $sort
@@ -383,7 +383,7 @@  discard block
 block discarded – undo
383 383
      * Find by traversing information.
384 384
      *
385 385
      * @param DomainObjectInterface $event
386
-     * @param bool|true             $future
386
+     * @param boolean             $future
387 387
      * @param bool|false            $past
388 388
      * @param int                   $limit
389 389
      * @param string                $sort
Please login to merge, or discard this patch.
Classes/ViewHelpers/Link/AbstractActionViewHelper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
      * Render a link with action and controller.
27 27
      *
28 28
      * @param array $controllerArguments
29
-     * @param null  $pageUid
29
+     * @param integer  $pageUid
30 30
      *
31 31
      * @return mixed|string
32 32
      */
Please login to merge, or discard this patch.