Completed
Pull Request — develop (#545)
by Agel_Nash
05:36
created
manager/includes/document.parser.class.inc.php 1 patch
Doc Comments   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -277,7 +277,7 @@  discard block
 block discarded – undo
277 277
      * MODX_MANAGER_PATH."includes/extenders/ex_{$extname}.inc.php"
278 278
      * $extname - extension name in lowercase
279 279
      *
280
-     * @param $extname
280
+     * @param string $extname
281 281
      * @param bool $reload
282 282
      * @return bool
283 283
      */
@@ -320,7 +320,7 @@  discard block
 block discarded – undo
320 320
      * @param int $count_attempts
321 321
      * @param string $type $type
322 322
      * @param string $responseCode
323
-     * @return bool|null
323
+     * @return false|null
324 324
      * @global string $base_url
325 325
      * @global string $site_url
326 326
      */
@@ -1021,7 +1021,7 @@  discard block
 block discarded – undo
1021 1021
     }
1022 1022
 
1023 1023
     /**
1024
-     * @param $contents
1024
+     * @param string $contents
1025 1025
      * @return mixed
1026 1026
      */
1027 1027
     public function RecoveryEscapedTags($contents)
@@ -1045,7 +1045,7 @@  discard block
 block discarded – undo
1045 1045
     }
1046 1046
 
1047 1047
     /**
1048
-     * @param $tstart
1048
+     * @param double $tstart
1049 1049
      * @return array
1050 1050
      */
1051 1051
     public function getTimerStats($tstart)
@@ -1797,7 +1797,7 @@  discard block
 block discarded – undo
1797 1797
 
1798 1798
     /**
1799 1799
      * Remove Comment-Tags from output like <!--@- Comment -@-->
1800
-     * @param $content
1800
+     * @param string $content
1801 1801
      * @param string $left
1802 1802
      * @param string $right
1803 1803
      * @return mixed
@@ -1970,7 +1970,7 @@  discard block
 block discarded – undo
1970 1970
     /**
1971 1971
      * Run snippets as per the tags in $documentSource and replace the tags with the returned values.
1972 1972
      *
1973
-     * @param $content
1973
+     * @param string $content
1974 1974
      * @return string
1975 1975
      * @internal param string $documentSource
1976 1976
      */
@@ -3002,7 +3002,7 @@  discard block
 block discarded – undo
3002 3002
 
3003 3003
     /**
3004 3004
      * @param $templateID
3005
-     * @return mixed
3005
+     * @return string
3006 3006
      */
3007 3007
     public function _getTemplateCodeFromDB($templateID)
3008 3008
     {
@@ -3043,9 +3043,9 @@  discard block
 block discarded – undo
3043 3043
     }
3044 3044
 
3045 3045
     /**
3046
-     * @param $id
3046
+     * @param integer $id
3047 3047
      * @param int $top
3048
-     * @return mixed
3048
+     * @return string
3049 3049
      */
3050 3050
     public function getUltimateParentId($id, $top = 0)
3051 3051
     {
@@ -3376,7 +3376,7 @@  discard block
 block discarded – undo
3376 3376
      *
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
-     * @return bool
3379
+     * @return false|null
3380 3380
      */
3381 3381
     public function lockElement($type, $id)
3382 3382
     {
@@ -3398,7 +3398,7 @@  discard block
 block discarded – undo
3398 3398
      * @param int $type Types: 1=template, 2=tv, 3=chunk, 4=snippet, 5=plugin, 6=module, 7=resource, 8=role
3399 3399
      * @param int $id Element- / Resource-id
3400 3400
      * @param bool $includeAllUsers true = Deletes not only own user-locks
3401
-     * @return bool
3401
+     * @return false|null
3402 3402
      */
3403 3403
     public function unlockElement($type, $id, $includeAllUsers = false)
3404 3404
     {
@@ -3506,7 +3506,7 @@  discard block
 block discarded – undo
3506 3506
      * @param array $params
3507 3507
      * @param string $msg
3508 3508
      * @param array $files
3509
-     * @return mixed
3509
+     * @return boolean
3510 3510
      */
3511 3511
     public function sendmail($params = array(), $msg = '', $files = array())
3512 3512
     {
@@ -3910,7 +3910,7 @@  discard block
 block discarded – undo
3910 3910
      *                     Default: 1
3911 3911
      * @param string $fields List of fields
3912 3912
      *                       Default: id, pagetitle, description, alias
3913
-     * @return boolean|array
3913
+     * @return string
3914 3914
      */
3915 3915
     public function getPageInfo($pageid = -1, $active = 1, $fields = 'id, pagetitle, description, alias')
3916 3916
     {
@@ -4002,7 +4002,7 @@  discard block
 block discarded – undo
4002 4002
      *
4003 4003
      * @param string $type
4004 4004
      * @param bool $report
4005
-     * @return bool
4005
+     * @return boolean|null
4006 4006
      */
4007 4007
     public function clearCache($type = '', $report = false)
4008 4008
     {
@@ -4369,7 +4369,7 @@  discard block
 block discarded – undo
4369 4369
      * - Placeholders prefix. Default: '{'.
4370 4370
      * @param string $suffix {string}
4371 4371
      * - Placeholders suffix. Default: '}'.
4372
-     * @return bool|mixed|string {string; false} - Parsed chunk or false if $chunkArr is not array.
4372
+     * @return false|string {string; false} - Parsed chunk or false if $chunkArr is not array.
4373 4373
      * - Parsed chunk or false if $chunkArr is not array.
4374 4374
      */
4375 4375
     public function parseChunk($chunkName, $chunkArr, $prefix = '{', $suffix = '}')
@@ -5345,7 +5345,7 @@  discard block
 block discarded – undo
5345 5345
      * Remove event listener - only for use within the current execution cycle
5346 5346
      *
5347 5347
      * @param string $evtName
5348
-     * @return boolean
5348
+     * @return false|null
5349 5349
      */
5350 5350
     public function removeEventListener($evtName)
5351 5351
     {
@@ -5369,7 +5369,7 @@  discard block
 block discarded – undo
5369 5369
      *
5370 5370
      * @param string $evtName
5371 5371
      * @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.
5372
-     * @return boolean|array
5372
+     * @return false|null
5373 5373
      */
5374 5374
     public function invokeEvent($evtName, $extParams = array())
5375 5375
     {
@@ -5968,7 +5968,7 @@  discard block
 block discarded – undo
5968 5968
 
5969 5969
     /**
5970 5970
      * @param string $str
5971
-     * @return bool|mixed|string
5971
+     * @return string
5972 5972
      */
5973 5973
     public function atBindFileContent($str = '')
5974 5974
     {
@@ -6019,8 +6019,8 @@  discard block
 block discarded – undo
6019 6019
     }
6020 6020
 
6021 6021
     /**
6022
-     * @param $str
6023
-     * @return bool|string
6022
+     * @param string $str
6023
+     * @return false|string
6024 6024
      */
6025 6025
     public function getExtFromFilename($str)
6026 6026
     {
@@ -6048,7 +6048,7 @@  discard block
 block discarded – undo
6048 6048
      * @param string $text Error message
6049 6049
      * @param string $file File where the error was detected
6050 6050
      * @param string $line Line number within $file
6051
-     * @return boolean
6051
+     * @return boolean|null
6052 6052
      */
6053 6053
     public function phpError($nr, $text, $file, $line)
6054 6054
     {
@@ -6100,7 +6100,7 @@  discard block
 block discarded – undo
6100 6100
      * @param string $text
6101 6101
      * @param string $line
6102 6102
      * @param string $output
6103
-     * @return bool
6103
+     * @return null|boolean
6104 6104
      */
6105 6105
     public function messageQuit($msg = 'unspecified error', $query = '', $is_error = true, $nr = '', $file = '', $source = '', $text = '', $line = '', $output = '')
6106 6106
     {
@@ -6522,7 +6522,7 @@  discard block
 block discarded – undo
6522 6522
 
6523 6523
     /**
6524 6524
      * @param string $str
6525
-     * @return bool|mixed|string
6525
+     * @return string
6526 6526
      */
6527 6527
     public function atBindInclude($str = '')
6528 6528
     {
@@ -6573,7 +6573,7 @@  discard block
 block discarded – undo
6573 6573
      * @param $str
6574 6574
      * @param int $flags
6575 6575
      * @param string $encode
6576
-     * @return mixed
6576
+     * @return string
6577 6577
      */
6578 6578
     public function htmlspecialchars($str, $flags = ENT_COMPAT, $encode = '')
6579 6579
     {
@@ -6582,7 +6582,7 @@  discard block
 block discarded – undo
6582 6582
     }
6583 6583
 
6584 6584
     /**
6585
-     * @param $string
6585
+     * @param string $string
6586 6586
      * @param bool $returnData
6587 6587
      * @return bool|mixed
6588 6588
      */
Please login to merge, or discard this patch.
manager/includes/extenders/dbapi.mysql.class.inc.php 1 patch
Doc Comments   +11 added lines patch added patch discarded remove patch
@@ -414,6 +414,9 @@  discard block
 block discarded – undo
414 414
         }
415 415
     }
416 416
 
417
+    /**
418
+     * @param string $table
419
+     */
417 420
     public function save($fields, $table, $where = '')
418 421
     {
419 422
 
@@ -444,6 +447,7 @@  discard block
 block discarded – undo
444 447
     /**
445 448
      * @name:  freeResult
446 449
      *
450
+     * @param mysqli_result $rs
447 451
      */
448 452
     public function freeResult($rs)
449 453
     {
@@ -554,6 +558,7 @@  discard block
 block discarded – undo
554 558
      * @name:  getColumn
555 559
      * @desc:  returns an array of the values found on colun $name
556 560
      * @param: $dsq - dataset or query string
561
+     * @param string $name
557 562
      */
558 563
     public function getColumn($name, $dsq)
559 564
     {
@@ -720,6 +725,9 @@  discard block
 block discarded – undo
720 725
         return $result;
721 726
     }
722 727
 
728
+    /**
729
+     * @param string $table_name
730
+     */
723 731
     public function optimize($table_name)
724 732
     {
725 733
         $rs = $this->query("OPTIMIZE TABLE {$table_name}");
@@ -730,6 +738,9 @@  discard block
 block discarded – undo
730 738
         return $rs;
731 739
     }
732 740
 
741
+    /**
742
+     * @param string $table_name
743
+     */
733 744
     public function truncate($table_name)
734 745
     {
735 746
         $rs = $this->query("TRUNCATE {$table_name}");
Please login to merge, or discard this patch.
manager/includes/extenders/dbapi.mysqli.class.inc.php 1 patch
Doc Comments   +9 added lines, -9 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
     {
@@ -368,7 +368,7 @@  discard block
 block discarded – undo
368 368
 
369 369
     /**
370 370
      * @param $fields
371
-     * @param $table
371
+     * @param string $table
372 372
      * @param string $where
373 373
      * @return bool|mixed|mysqli_result
374 374
      */
@@ -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/deprecated.functions.inc.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
      * @deprecated
73 73
      *
74 74
      * @param $rs
75
-     * @return int|mixed
75
+     * @return integer
76 76
      */
77 77
     public function insertId($rs)
78 78
     {
Please login to merge, or discard this patch.
manager/includes/extenders/modifiers.class.inc.php 1 patch
Doc Comments   +27 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
     /**
95 95
      * @param string $mode
96 96
      * @param string $modifiers
97
-     * @return bool|string
97
+     * @return false|string
98 98
      */
99 99
     public function _getDelim($mode,$modifiers) {
100 100
         $c = substr($modifiers,0,1);
@@ -131,6 +131,14 @@  discard block
 block discarded – undo
131 131
             return $opt;
132 132
         }
133 133
     }
134
+
135
+    /**
136
+     * @param string $mode
137
+     * @param false|string $delim
138
+     * @param string $modifiers
139
+     *
140
+     * @return string
141
+     */
134 142
     public function _getRemainModifiers($mode,$delim,$modifiers) {
135 143
         if($delim) {
136 144
             if($mode=='(')
@@ -158,6 +166,9 @@  discard block
 block discarded – undo
158 166
         return substr($string,strpos($string, $delim)+$len);
159 167
     }
160 168
 
169
+    /**
170
+     * @param string $modifiers
171
+     */
161 172
     public function splitEachModifiers($modifiers) {
162 173
         $modx = DocumentParser::getInstance();
163 174
 
@@ -227,6 +238,10 @@  discard block
 block discarded – undo
227 238
         return $result;
228 239
     }
229 240
 
241
+    /**
242
+     * @param string $key
243
+     * @param string $value
244
+     */
230 245
     public function parsePhx($key,$value,$modifiers)
231 246
     {
232 247
         $modx = DocumentParser::getInstance();
@@ -293,6 +308,10 @@  discard block
 block discarded – undo
293 308
         else                  return true;
294 309
     }
295 310
 
311
+    /**
312
+     * @param string $cmd
313
+     * @param string $opt
314
+     */
296 315
     public function getValueFromPreset($key, $value, $cmd, $opt)
297 316
     {
298 317
         $modx = DocumentParser::getInstance();
@@ -978,6 +997,9 @@  discard block
 block discarded – undo
978 997
         return $value;
979 998
     }
980 999
 
1000
+    /**
1001
+     * @param string $cmd
1002
+     */
981 1003
     public function includeMdfFile($cmd) {
982 1004
         $modx = DocumentParser::getInstance();
983 1005
         $key = $this->key;
@@ -1133,6 +1155,10 @@  discard block
 block discarded – undo
1133 1155
     }
1134 1156
 
1135 1157
     // Sets a placeholder variable which can only be access by Modifiers
1158
+
1159
+    /**
1160
+     * @param string $value
1161
+     */
1136 1162
     public function setModifiersVariable($key, $value) {
1137 1163
         if ($key != 'phx' && $key != 'dummy') $this->placeholders[$key] = $value;
1138 1164
     }
Please login to merge, or discard this patch.