Completed
Push — master ( 8e73fb...990815 )
by Tim
03:02
created
Classes/Controller/AbstractController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
      * Send the content type header and the right file extension in front of the content
71 71
      *
72 72
      * @param $contentType
73
-     * @param $fileExtension
73
+     * @param string $fileExtension
74 74
      */
75 75
     protected function sendHeaderAndFilename($contentType, $fileExtension)
76 76
     {
Please login to merge, or discard this patch.
Classes/Service/CalDav/PrincipalBackendTypo3.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@
 block discarded – undo
129 129
      *
130 130
      * @param $principal
131 131
      *
132
-     * @return array
132
+     * @return string[]
133 133
      * @throws Exception
134 134
      */
135 135
     public function getGroupMemberSet($principal)
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
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
      * Add one row to the table
45 45
      *
46 46
      * @param string $label
47
-     * @param mixed  $value
47
+     * @param string  $value
48 48
      */
49 49
     public function addRow($label, $value)
50 50
     {
Please login to merge, or discard this patch.
Classes/Hooks/CmsLayout.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
 
69 69
         $actions = $this->flexFormService->get('switchableControllerActions', 'main');
70 70
         $parts = GeneralUtility::trimExplode(';', $actions, true);
71
-        $parts = array_map(function ($element) {
71
+        $parts = array_map(function($element) {
72 72
             $split = explode('->', $element);
73 73
             return ucfirst($split[1]);
74 74
         }, $parts);
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
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
      * Find List
71 71
      *
72 72
      * @param int $limit
73
-     * @param int|string $listStartTime
73
+     * @param integer $listStartTime
74 74
      * @param int $startOffsetHours
75 75
      * @param int $overrideStartDate
76 76
      * @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/Updates/CalMigrationUpdate.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -272,7 +272,7 @@  discard block
 block discarded – undo
272 272
     }
273 273
 
274 274
     /**
275
-     * @param $eventImportId
275
+     * @param string $eventImportId
276 276
      * @param $configuration
277 277
      * @param $dbQueries
278 278
      * @param $customMessages
@@ -377,7 +377,7 @@  discard block
 block discarded – undo
377 377
     }
378 378
 
379 379
     /**
380
-     * @param $eventImportId
380
+     * @param string $eventImportId
381 381
      * @param $dbQueries
382 382
      * @param $customMessages
383 383
      *
Please login to merge, or discard this patch.
Classes/Utility/EventUtility.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
      * @param PluginConfiguration|array $configuration
20 20
      * @param int $uid
21 21
      *
22
-     * @return object
22
+     * @return \TYPO3\CMS\Extbase\DomainObject\DomainObjectInterface
23 23
      */
24 24
     public static function getOriginalRecordByConfiguration($configuration, $uid)
25 25
     {
Please login to merge, or discard this patch.
Classes/Command/CleanupCommandController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -102,12 +102,12 @@
 block discarded – undo
102 102
     protected function processEvent(EventRepository $repository, Event $model, $modus)
103 103
     {
104 104
         // define the function for the delete-modus.
105
-        $delete = function ($repository, $model) {
105
+        $delete = function($repository, $model) {
106 106
             $repository->remove($model);
107 107
         };
108 108
 
109 109
         // define the function for the hide-modus.
110
-        $hide = function ($repository, $model) {
110
+        $hide = function($repository, $model) {
111 111
             $model->setHidden(true);
112 112
             $repository->update($model);
113 113
         };
Please login to merge, or discard this patch.
Classes/Slots/CalMigration.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
 
34 34
         $db = HelperUtility::getDatabaseConnection();
35 35
 
36
-        $selectWhere = 'tablenames = \'tx_cal_event\' AND uid_foreign = ' . (int) $event['uid'];
36
+        $selectWhere = 'tablenames = \'tx_cal_event\' AND uid_foreign = ' . (int)$event['uid'];
37 37
         $query = $db->SELECTquery('*', 'sys_file_reference', $selectWhere);
38 38
         $selectResults = $db->admin_query($query);
39 39
         $dbQueries[] = $query;
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
         foreach ($selectResults as $selectResult) {
42 42
             $updateWhere = ' import_id = \'' . CalMigrationUpdate::IMPORT_PREFIX . $selectResult['uid'] . '\'';
43 43
             $fieldValues = [
44
-                'uid_foreign' => (int) $recordId,
44
+                'uid_foreign' => (int)$recordId,
45 45
                 'tablenames' => $table
46 46
             ];
47 47
 
Please login to merge, or discard this patch.