Update param annotation

Refs https://github.com/cakephp/cakephp/pull/7447#discussion_r40444634
This commit is contained in:
Marc Würth 2015-09-25 18:12:20 +02:00
parent 1267586f23
commit 41abccc062

View file

@ -137,7 +137,7 @@ class Dispatcher implements CakeEventListener {
* @param CakeRequest $request Request object to dispatch.
* @param CakeResponse $response Response object to put the results of the dispatch into.
* @param array $additionalParams Settings array ("bare", "return") which is melded with the GET and POST params
* @return string|void if `$request['return']` is set then it returns response body, null otherwise
* @return string|null if `$request['return']` is set then it returns response body, null otherwise
* @triggers Dispatcher.beforeDispatch $this, compact('request', 'response', 'additionalParams')
* @triggers Dispatcher.afterDispatch $this, compact('request', 'response')
* @throws MissingControllerException When the controller is missing.