Completed
Push — develop ( 053968...47dc8d )
by Maxim
12s
created
install/instprocessor.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
      * duplicate of method in documentParser class
131 131
      *
132 132
      * @param string $propertyString
133
-     * @return array
133
+     * @return string
134 134
      */
135 135
     function parseProperties($propertyString) {
136 136
         $parameter= array ();
Please login to merge, or discard this patch.
manager/actions/files.dynamic.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -719,7 +719,7 @@  discard block
 block discarded – undo
719 719
 
720 720
 /**
721 721
  * @param string $string
722
- * @return bool|string
722
+ * @return string|false
723 723
  */
724 724
 function removeLastPath($string)
725 725
 {
@@ -734,7 +734,7 @@  discard block
 block discarded – undo
734 734
 
735 735
 /**
736 736
  * @param string $string
737
- * @return bool|string
737
+ * @return string|false
738 738
  */
739 739
 function getExtension($string)
740 740
 {
Please login to merge, or discard this patch.
manager/actions/import_site.static.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -344,7 +344,7 @@
 block discarded – undo
344 344
 
345 345
 /**
346 346
  * @param string $filepath
347
- * @return bool|string
347
+ * @return null|string
348 348
  */
349 349
 function getFileContent($filepath) {
350 350
 	global $_lang;
Please login to merge, or discard this patch.
manager/includes/document.parser.class.inc.php 1 patch
Doc Comments   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -256,7 +256,7 @@  discard block
 block discarded – undo
256 256
      * MODX_MANAGER_PATH."includes/extenders/ex_{$extname}.inc.php"
257 257
      * $extname - extension name in lowercase
258 258
      *
259
-     * @param $extname
259
+     * @param string $extname
260 260
      * @param bool $reload
261 261
      * @return bool
262 262
      */
@@ -299,7 +299,7 @@  discard block
 block discarded – undo
299 299
      * @param int $count_attempts
300 300
      * @param string $type $type
301 301
      * @param string $responseCode
302
-     * @return bool|null
302
+     * @return false|null
303 303
      * @global string $base_url
304 304
      * @global string $site_url
305 305
      */
@@ -1000,7 +1000,7 @@  discard block
 block discarded – undo
1000 1000
     }
1001 1001
 
1002 1002
     /**
1003
-     * @param $contents
1003
+     * @param string $contents
1004 1004
      * @return mixed
1005 1005
      */
1006 1006
     public function RecoveryEscapedTags($contents)
@@ -1024,7 +1024,7 @@  discard block
 block discarded – undo
1024 1024
     }
1025 1025
 
1026 1026
     /**
1027
-     * @param $tstart
1027
+     * @param double $tstart
1028 1028
      * @return array
1029 1029
      */
1030 1030
     public function getTimerStats($tstart)
@@ -1776,7 +1776,7 @@  discard block
 block discarded – undo
1776 1776
 
1777 1777
     /**
1778 1778
      * Remove Comment-Tags from output like <!--@- Comment -@-->
1779
-     * @param $content
1779
+     * @param string $content
1780 1780
      * @param string $left
1781 1781
      * @param string $right
1782 1782
      * @return mixed
@@ -1949,7 +1949,7 @@  discard block
 block discarded – undo
1949 1949
     /**
1950 1950
      * Run snippets as per the tags in $documentSource and replace the tags with the returned values.
1951 1951
      *
1952
-     * @param $content
1952
+     * @param string $content
1953 1953
      * @return string
1954 1954
      * @internal param string $documentSource
1955 1955
      */
@@ -2981,7 +2981,7 @@  discard block
 block discarded – undo
2981 2981
 
2982 2982
     /**
2983 2983
      * @param $templateID
2984
-     * @return mixed
2984
+     * @return string
2985 2985
      */
2986 2986
     public function _getTemplateCodeFromDB($templateID)
2987 2987
     {
@@ -3022,9 +3022,9 @@  discard block
 block discarded – undo
3022 3022
     }
3023 3023
 
3024 3024
     /**
3025
-     * @param $id
3025
+     * @param integer $id
3026 3026
      * @param int $top
3027
-     * @return mixed
3027
+     * @return string
3028 3028
      */
3029 3029
     public function getUltimateParentId($id, $top = 0)
3030 3030
     {
@@ -3355,7 +3355,7 @@  discard block
 block discarded – undo
3355 3355
      *
3356 3356
      * @param int $type Types: 1=template, 2=tv, 3=chunk, 4=snippet, 5=plugin, 6=module, 7=resource, 8=role
3357 3357
      * @param int $id Element- / Resource-id
3358
-     * @return bool
3358
+     * @return false|null
3359 3359
      */
3360 3360
     public function lockElement($type, $id)
3361 3361
     {
@@ -3377,7 +3377,7 @@  discard block
 block discarded – undo
3377 3377
      * @param int $type Types: 1=template, 2=tv, 3=chunk, 4=snippet, 5=plugin, 6=module, 7=resource, 8=role
3378 3378
      * @param int $id Element- / Resource-id
3379 3379
      * @param bool $includeAllUsers true = Deletes not only own user-locks
3380
-     * @return bool
3380
+     * @return false|null
3381 3381
      */
3382 3382
     public function unlockElement($type, $id, $includeAllUsers = false)
3383 3383
     {
@@ -3485,7 +3485,7 @@  discard block
 block discarded – undo
3485 3485
      * @param array $params
3486 3486
      * @param string $msg
3487 3487
      * @param array $files
3488
-     * @return mixed
3488
+     * @return boolean
3489 3489
      */
3490 3490
     public function sendmail($params = array(), $msg = '', $files = array())
3491 3491
     {
@@ -3981,7 +3981,7 @@  discard block
 block discarded – undo
3981 3981
      *
3982 3982
      * @param string $type
3983 3983
      * @param bool $report
3984
-     * @return bool
3984
+     * @return boolean|null
3985 3985
      */
3986 3986
     public function clearCache($type = '', $report = false)
3987 3987
     {
@@ -4348,7 +4348,7 @@  discard block
 block discarded – undo
4348 4348
      * - Placeholders prefix. Default: '{'.
4349 4349
      * @param string $suffix {string}
4350 4350
      * - Placeholders suffix. Default: '}'.
4351
-     * @return bool|mixed|string {string; false} - Parsed chunk or false if $chunkArr is not array.
4351
+     * @return false|string {string; false} - Parsed chunk or false if $chunkArr is not array.
4352 4352
      * - Parsed chunk or false if $chunkArr is not array.
4353 4353
      */
4354 4354
     public function parseChunk($chunkName, $chunkArr, $prefix = '{', $suffix = '}')
@@ -5324,7 +5324,7 @@  discard block
 block discarded – undo
5324 5324
      * Remove event listener - only for use within the current execution cycle
5325 5325
      *
5326 5326
      * @param string $evtName
5327
-     * @return boolean
5327
+     * @return false|null
5328 5328
      */
5329 5329
     public function removeEventListener($evtName)
5330 5330
     {
@@ -5348,7 +5348,7 @@  discard block
 block discarded – undo
5348 5348
      *
5349 5349
      * @param string $evtName
5350 5350
      * @param array $extParams Parameters available to plugins. Each array key will be the PHP variable name, and the array value will be the variable value.
5351
-     * @return boolean|array
5351
+     * @return false|null
5352 5352
      */
5353 5353
     public function invokeEvent($evtName, $extParams = array())
5354 5354
     {
@@ -5947,7 +5947,7 @@  discard block
 block discarded – undo
5947 5947
 
5948 5948
     /**
5949 5949
      * @param string $str
5950
-     * @return bool|mixed|string
5950
+     * @return string
5951 5951
      */
5952 5952
     public function atBindFileContent($str = '')
5953 5953
     {
@@ -5998,8 +5998,8 @@  discard block
 block discarded – undo
5998 5998
     }
5999 5999
 
6000 6000
     /**
6001
-     * @param $str
6002
-     * @return bool|string
6001
+     * @param string $str
6002
+     * @return false|string
6003 6003
      */
6004 6004
     public function getExtFromFilename($str)
6005 6005
     {
@@ -6027,7 +6027,7 @@  discard block
 block discarded – undo
6027 6027
      * @param string $text Error message
6028 6028
      * @param string $file File where the error was detected
6029 6029
      * @param string $line Line number within $file
6030
-     * @return boolean
6030
+     * @return boolean|null
6031 6031
      */
6032 6032
     public function phpError($nr, $text, $file, $line)
6033 6033
     {
@@ -6079,7 +6079,7 @@  discard block
 block discarded – undo
6079 6079
      * @param string $text
6080 6080
      * @param string $line
6081 6081
      * @param string $output
6082
-     * @return bool
6082
+     * @return null|boolean
6083 6083
      */
6084 6084
     public function messageQuit($msg = 'unspecified error', $query = '', $is_error = true, $nr = '', $file = '', $source = '', $text = '', $line = '', $output = '')
6085 6085
     {
@@ -6501,7 +6501,7 @@  discard block
 block discarded – undo
6501 6501
 
6502 6502
     /**
6503 6503
      * @param string $str
6504
-     * @return bool|mixed|string
6504
+     * @return string
6505 6505
      */
6506 6506
     public function atBindInclude($str = '')
6507 6507
     {
@@ -6552,7 +6552,7 @@  discard block
 block discarded – undo
6552 6552
      * @param $str
6553 6553
      * @param int $flags
6554 6554
      * @param string $encode
6555
-     * @return mixed
6555
+     * @return string
6556 6556
      */
6557 6557
     public function htmlspecialchars($str, $flags = ENT_COMPAT, $encode = '')
6558 6558
     {
@@ -6561,7 +6561,7 @@  discard block
 block discarded – undo
6561 6561
     }
6562 6562
 
6563 6563
     /**
6564
-     * @param $string
6564
+     * @param string $string
6565 6565
      * @param bool $returnData
6566 6566
      * @return bool|mixed
6567 6567
      */
Please login to merge, or discard this patch.
manager/includes/extenders/dbapi.mysqli.class.inc.php 1 patch
Doc Comments   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -240,9 +240,9 @@  discard block
 block discarded – undo
240 240
     }
241 241
 
242 242
     /**
243
-     * @param string|array $fields
244
-     * @param string|array $from
245
-     * @param string|array $where
243
+     * @param string $fields
244
+     * @param string $from
245
+     * @param string $where
246 246
      * @param string $orderBy
247 247
      * @param string $limit
248 248
      * @return bool|mysqli_result
@@ -326,7 +326,7 @@  discard block
 block discarded – undo
326 326
      * @param string $fromtable
327 327
      * @param string $where
328 328
      * @param string $limit
329
-     * @return mixed
329
+     * @return null|integer
330 330
      */
331 331
     public function insert($fields, $intotable, $fromfields = "*", $fromtable = "", $where = "", $limit = "")
332 332
     {
@@ -435,7 +435,7 @@  discard block
 block discarded – undo
435 435
 
436 436
     /**
437 437
      * @param null|mysqli $conn
438
-     * @return mixed
438
+     * @return integer
439 439
      */
440 440
     public function getInsertId($conn = null)
441 441
     {
@@ -513,7 +513,7 @@  discard block
 block discarded – undo
513 513
     }
514 514
 
515 515
     /**
516
-     * @param $name
516
+     * @param string $name
517 517
      * @param mysqli_result|string $dsq
518 518
      * @return array
519 519
      */
@@ -572,7 +572,7 @@  discard block
 block discarded – undo
572 572
 
573 573
     /**
574 574
      * @param string $table
575
-     * @return array
575
+     * @return boolean
576 576
      */
577 577
     public function getTableMetaData($table)
578 578
     {
@@ -619,7 +619,7 @@  discard block
 block discarded – undo
619 619
     }
620 620
 
621 621
     /**
622
-     * @param string|mysqli_result $rs
622
+     * @param string $rs
623 623
      * @param bool $index
624 624
      * @return array
625 625
      */
Please login to merge, or discard this patch.
manager/includes/extenders/maketable.class.php 1 patch
Doc Comments   +4 added lines, -7 removed lines patch added patch discarded remove patch
@@ -278,8 +278,7 @@  discard block
 block discarded – undo
278 278
     /**
279 279
      * Sets the width attribute of each column in the array.
280 280
      *
281
-     * @param array $value An Array of column widths in the order of the keys in the
282
-     *            source table array.
281
+     * @param string[] $widthArray
283 282
      */
284 283
     public function setColumnWidths($widthArray)
285 284
     {
@@ -289,7 +288,6 @@  discard block
 block discarded – undo
289 288
     /**
290 289
      * An optional array of values that can be preselected when using
291 290
      *
292
-     * @param array $value Indicates the INPUT form element type attribute.
293 291
      */
294 292
     public function setSelectedValues($valueArray)
295 293
     {
@@ -326,7 +324,7 @@  discard block
 block discarded – undo
326 324
     /**
327 325
      * Determines what class the current row should have applied.
328 326
      *
329
-     * @param int $value The position of the current row being rendered.
327
+     * @param integer $position
330 328
      * @return string
331 329
      */
332 330
     public function determineRowClass($position)
@@ -353,7 +351,6 @@  discard block
 block discarded – undo
353 351
      * Generates an onclick action applied to the current cell, to execute
354 352
      * any specified cell actions.
355 353
      *
356
-     * @param string $value Indicates the INPUT form element type attribute.
357 354
      * @return string
358 355
      */
359 356
     public function getCellAction($currentActionFieldValue)
@@ -395,7 +392,7 @@  discard block
 block discarded – undo
395 392
     /**
396 393
      * Function to prepare a link generated in the table cell/link actions.
397 394
      *
398
-     * @param string $value Indicates the INPUT form element type attribute.
395
+     * @param string $link
399 396
      * @return string
400 397
      */
401 398
     public function prepareLink($link)
@@ -414,7 +411,7 @@  discard block
 block discarded – undo
414 411
      *
415 412
      * @param array $fieldsArray The associative array representing the table rows
416 413
      * and columns.
417
-     * @param array $fieldHeadersArray An optional array of values for providing
414
+     * @param string[] $fieldHeadersArray An optional array of values for providing
418 415
      * alternative field headers; this is an associative arrays of keys from
419 416
      * the $fieldsArray where the values represent the alt heading content
420 417
      * for each column.
Please login to merge, or discard this patch.
manager/includes/extenders/modifiers.class.inc.php 1 patch
Doc Comments   +25 added lines, -1 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
     /**
96 96
      * @param string $mode
97 97
      * @param string $modifiers
98
-     * @return bool|string
98
+     * @return false|string
99 99
      */
100 100
     public function _getDelim($mode,$modifiers) {
101 101
         $c = substr($modifiers,0,1);
@@ -132,6 +132,14 @@  discard block
 block discarded – undo
132 132
             return $opt;
133 133
         }
134 134
     }
135
+
136
+    /**
137
+     * @param string $mode
138
+     * @param false|string $delim
139
+     * @param string $modifiers
140
+     *
141
+     * @return string
142
+     */
135 143
     public function _getRemainModifiers($mode,$delim,$modifiers) {
136 144
         if($delim) {
137 145
             if($mode=='(')
@@ -159,6 +167,9 @@  discard block
 block discarded – undo
159 167
         return substr($string,strpos($string, $delim)+$len);
160 168
     }
161 169
 
170
+    /**
171
+     * @param string $modifiers
172
+     */
162 173
     public function splitEachModifiers($modifiers) {
163 174
         global $modx;
164 175
 
@@ -228,6 +239,9 @@  discard block
 block discarded – undo
228 239
         return $result;
229 240
     }
230 241
 
242
+    /**
243
+     * @param string $key
244
+     */
231 245
     public function parsePhx($key,$value,$modifiers)
232 246
     {
233 247
         global $modx;
@@ -294,6 +308,9 @@  discard block
 block discarded – undo
294 308
         else                  return true;
295 309
     }
296 310
 
311
+    /**
312
+     * @param string $cmd
313
+     */
297 314
     public function getValueFromPreset($key, $value, $cmd, $opt)
298 315
     {
299 316
         global $modx;
@@ -979,6 +996,9 @@  discard block
 block discarded – undo
979 996
         return $value;
980 997
     }
981 998
 
999
+    /**
1000
+     * @param string $cmd
1001
+     */
982 1002
     public function includeMdfFile($cmd) {
983 1003
         global $modx;
984 1004
         $key = $this->key;
@@ -1134,6 +1154,10 @@  discard block
 block discarded – undo
1134 1154
     }
1135 1155
 
1136 1156
     // Sets a placeholder variable which can only be access by Modifiers
1157
+
1158
+    /**
1159
+     * @param string $value
1160
+     */
1137 1161
     public function setModifiersVariable($key, $value) {
1138 1162
         if ($key != 'phx' && $key != 'dummy') $this->placeholders[$key] = $value;
1139 1163
     }
Please login to merge, or discard this patch.
manager/includes/paginate.inc.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -149,7 +149,7 @@
 block discarded – undo
149 149
     /**
150 150
      * This function returns the current page number.
151 151
      *
152
-     * @return int
152
+     * @return string
153 153
      */
154 154
     public function getCurrentPage()
155 155
     {
Please login to merge, or discard this patch.
manager/includes/protect.inc.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
 // sanitize array
17 17
 if (!function_exists('modx_sanitize_gpc')) {
18 18
     /**
19
-     * @param array|string $values
19
+     * @param string $values
20 20
      * @param int $depth
21 21
      * @return array|string
22 22
      */
Please login to merge, or discard this patch.