Add missing return tags

This commit is contained in:
Bryan Crowe 2013-10-14 22:43:17 -04:00
parent d4ecb7d185
commit f9435aff27
3 changed files with 3 additions and 0 deletions

View file

@ -68,6 +68,7 @@ class NumberHelper extends AppHelper {
/**
* Call methods from CakeNumber utility class
* @return mixed Whatever is returned by called method, or false on failure
*/
public function __call($method, $params) {
return call_user_func_array(array($this->_engine, $method), $params);

View file

@ -83,6 +83,7 @@ class TextHelper extends AppHelper {
/**
* Call methods from String utility class
* @return mixed Whatever is returned by called method, or false on failure
*/
public function __call($method, $params) {
return call_user_func_array(array($this->_engine, $method), $params);

View file

@ -117,6 +117,7 @@ class TimeHelper extends AppHelper {
/**
* Call methods from CakeTime utility class
* @return mixed Whatever is returned by called method, or false on failure
*/
public function __call($method, $params) {
return call_user_func_array(array($this->_engine, $method), $params);