Corrected/Improved DocBlock

This commit is contained in:
Marc Würth 2014-12-19 18:20:48 +01:00
parent c496c7b857
commit e778b5dce2

View file

@ -183,7 +183,7 @@ abstract class ControllerTestCase extends CakeTestCase {
*
* @param string $name The name of the function
* @param array $arguments Array of arguments
* @return the return of _testAction
* @return mixed The return of _testAction.
* @throws BadMethodCallException when you call methods that don't exist.
*/
public function __call($name, $arguments) {
@ -212,7 +212,7 @@ abstract class ControllerTestCase extends CakeTestCase {
*
* @param string $url The url to test
* @param array $options See options
* @return mixed
* @return mixed The specified return type.
* @triggers ControllerTestCase $Dispatch, array('request' => $request)
*/
protected function _testAction($url = '', $options = array()) {