Completed
Push — master ( 35f8f6...075b65 )
by Tim
27s queued 13s
created
Classes/Domain/Repository/IndexRepository.php 2 patches
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
     /**
66 66
      * Set the index types.
67 67
      *
68
-     * @param array $types
68
+     * @param string[] $types
69 69
      */
70 70
     public function setIndexTypes(array $types)
71 71
     {
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
     /**
76 76
      * Override page IDs.
77 77
      *
78
-     * @param array $overridePageIds
78
+     * @param integer[] $overridePageIds
79 79
      */
80 80
     public function setOverridePageIds($overridePageIds)
81 81
     {
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
      * Find List.
124 124
      *
125 125
      * @param int        $limit
126
-     * @param int|string $listStartTime
126
+     * @param integer $listStartTime
127 127
      * @param int        $startOffsetHours
128 128
      * @param int        $overrideStartDate
129 129
      * @param int        $overrideEndDate
@@ -292,7 +292,7 @@  discard block
 block discarded – undo
292 292
      * Find by traversing information.
293 293
      *
294 294
      * @param DomainObjectInterface $event
295
-     * @param bool|true             $future
295
+     * @param boolean             $future
296 296
      * @param bool|false            $past
297 297
      * @param int                   $limit
298 298
      * @param string                $sort
Please login to merge, or discard this patch.
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -214,8 +214,8 @@
 block discarded – undo
214 214
                 } elseif (is_string($key) && is_int($indexId)) {
215 215
                     // Table based single return value
216 216
                     $tabledIndexIds[] = [
217
-                         'table' => $key,
218
-                         'indexIds' => [$indexId]
217
+                            'table' => $key,
218
+                            'indexIds' => [$indexId]
219 219
                     ];
220 220
                 }
221 221
             }
Please login to merge, or discard this patch.
Classes/Register.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -117,7 +117,7 @@
 block discarded – undo
117 117
         $typeList = isset($configuration['tcaTypeList']) ? \trim($configuration['tcaTypeList']) : '';
118 118
         // Configure position of where to put the calendarize fields
119 119
         // Supports everything offered by TYPO3, e.g.: before:abc, after:abc, replace:abc
120
-        $position = isset($configuration['tcaPosition']) ? \trim($configuration['tcaPosition']): '';
120
+        $position = isset($configuration['tcaPosition']) ? \trim($configuration['tcaPosition']) : '';
121 121
         $GLOBALS['TCA'][$tableName]['columns'][$fieldName] = [
122 122
             'label' => 'Calendarize',
123 123
             'l10n_mode' => 'exclude',
Please login to merge, or discard this patch.