Completed
Pull Request — master (#6714)
by Filis
09:44
created
src/Control/RSS/RSSFeed.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -248,6 +248,7 @@
 block discarded – undo
248 248
      * via the standard template inclusion process.
249 249
      *
250 250
      * @param string
251
+     * @param string|null $template
251 252
      */
252 253
     public function setTemplate($template)
253 254
     {
Please login to merge, or discard this patch.
src/Control/Session.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -330,6 +330,9 @@  discard block
 block discarded – undo
330 330
         }
331 331
     }
332 332
 
333
+    /**
334
+     * @param string $name
335
+     */
333 336
     public function inst_set($name, $val)
334 337
     {
335 338
         // Quicker execution path for "."-free names
@@ -379,6 +382,9 @@  discard block
 block discarded – undo
379 382
         $diffVar[sizeof($var)-1] = $val;
380 383
     }
381 384
 
385
+    /**
386
+     * @param string $name
387
+     */
382 388
     public function inst_get($name)
383 389
     {
384 390
         // Quicker execution path for "."-free names
Please login to merge, or discard this patch.
src/Core/ClassInfo.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -297,6 +297,9 @@  discard block
 block discarded – undo
297 297
 
298 298
     private static $method_from_cache = array();
299 299
 
300
+    /**
301
+     * @param string $method
302
+     */
300 303
     public static function has_method_from($class, $method, $compclass)
301 304
     {
302 305
         $lClass = strtolower($class);
@@ -322,6 +325,8 @@  discard block
 block discarded – undo
322 325
 
323 326
     /**
324 327
      * @deprecated 4.0..5.0
328
+     * @param string $candidateClass
329
+     * @param string $fieldName
325 330
      */
326 331
     public static function table_for_object_field($candidateClass, $fieldName)
327 332
     {
Please login to merge, or discard this patch.
src/Core/CustomMethods.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -151,7 +151,7 @@
 block discarded – undo
151 151
     /**
152 152
      * Get meta-data details on a named method
153 153
      *
154
-     * @param array $method
154
+     * @param string $method
155 155
      * @return array List of custom method details, if defined for this method
156 156
      */
157 157
     protected function getExtraMethodConfig($method)
Please login to merge, or discard this patch.
src/Core/Injector/Injector.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -368,7 +368,7 @@  discard block
 block discarded – undo
368 368
      *
369 369
      * @param string $property
370 370
      *                the name of the property
371
-     * @param object $object
371
+     * @param string $object
372 372
      *                the object to be set
373 373
      * @return $this
374 374
      */
@@ -463,7 +463,7 @@  discard block
 block discarded – undo
463 463
      *              The name of the service to update the definition for
464 464
      * @param string $property
465 465
      *              The name of the property to update.
466
-     * @param mixed $value
466
+     * @param string $value
467 467
      *              The value to set
468 468
      * @param boolean $append
469 469
      *              Whether to append (the default) when the property is an array
Please login to merge, or discard this patch.
src/Core/Manifest/ClassManifest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -259,7 +259,7 @@
 block discarded – undo
259 259
      * Returns an array containing all the descendants (direct and indirect)
260 260
      * of a class.
261 261
      *
262
-     * @param  string|object $class
262
+     * @param  string $class
263 263
      * @return array
264 264
      */
265 265
     public function getDescendantsOf($class)
Please login to merge, or discard this patch.
src/Core/Startup/ErrorControlChain.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
     /**
107 107
      * Get value of display_errors ini value
108 108
      *
109
-     * @return mixed
109
+     * @return string
110 110
      */
111 111
     protected function getDisplayErrors()
112 112
     {
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
      * Add this callback to the chain of callbacks to call along with the state
118 118
      * that $error must be in this point in the chain for the callback to be called
119 119
      *
120
-     * @param $callback - The callback to call
120
+     * @param callable $callback - The callback to call
121 121
      * @param $onErrorState - false if only call if no errors yet, true if only call if already errors, null for either
122 122
      * @return $this
123 123
      */
Please login to merge, or discard this patch.
src/Core/Startup/ParameterConfirmationToken.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,6 +38,9 @@  discard block
 block discarded – undo
38 38
      */
39 39
     protected $token = null;
40 40
 
41
+    /**
42
+     * @param string $token
43
+     */
41 44
     protected function pathForToken($token)
42 45
     {
43 46
         return TEMP_FOLDER.'/token_'.preg_replace('/[^a-z0-9]+/', '', $token);
@@ -247,7 +250,7 @@  discard block
 block discarded – undo
247 250
      * Given a list of token names, suppress all tokens that have not been validated, and
248 251
      * return the non-validated token with the highest priority
249 252
      *
250
-     * @param array $keys List of token keys in ascending priority (low to high)
253
+     * @param string[] $keys List of token keys in ascending priority (low to high)
251 254
      * @return ParameterConfirmationToken The token container for the unvalidated $key given with the highest priority
252 255
      */
253 256
     public static function prepare_tokens($keys)
Please login to merge, or discard this patch.
src/Dev/Backtrace.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -132,7 +132,7 @@
 block discarded – undo
132 132
      * @param mixed $returnVal
133 133
      * @param bool $ignoreAjax
134 134
      * @param array $ignoredFunctions
135
-     * @return mixed
135
+     * @return string|null
136 136
      */
137 137
     public static function backtrace($returnVal = false, $ignoreAjax = false, $ignoredFunctions = null)
138 138
     {
Please login to merge, or discard this patch.