@@ -95,7 +95,6 @@ discard block |
||
| 95 | 95 | * |
| 96 | 96 | * @param boolean $caseSensitive |
| 97 | 97 | * @param boolean $capitalize |
| 98 | - * @param boolean $bool |
|
| 99 | 98 | */ |
| 100 | 99 | public static function reset($caseSensitive = false, $capitalize = false) |
| 101 | 100 | { |
@@ -329,7 +328,6 @@ discard block |
||
| 329 | 328 | * get value named the same as the method called |
| 330 | 329 | * method allows getting value from an object with $object->key() |
| 331 | 330 | * |
| 332 | - * @param string $method |
|
| 333 | 331 | * @param array $args |
| 334 | 332 | * @return mixed static::$values[$key] |
| 335 | 333 | * @link http://php.net/manual/en/language.oop5.overloading.php#object.call |
@@ -343,7 +341,6 @@ discard block |
||
| 343 | 341 | * get value named the same as the method called statically |
| 344 | 342 | * method allows getting value from an object with $object::key() |
| 345 | 343 | * |
| 346 | - * @param string $method |
|
| 347 | 344 | * @param array $args |
| 348 | 345 | * @return mixed static::$values[$key] |
| 349 | 346 | * @link http://php.net/manual/en/language.oop5.overloading.php#object.callstatic |