add type hinting to dispatch filters

This commit is contained in:
Ceeram 2012-11-22 10:02:36 +01:00
parent 5870d71e84
commit 5741ac1828
3 changed files with 5 additions and 5 deletions

View file

@ -66,7 +66,7 @@ abstract class DispatcherFilter implements CakeEventListener {
* keys in the data property.
* @return CakeResponse|boolean
**/
public function beforeDispatch($event) {
public function beforeDispatch(CakeEvent $event) {
}
/**
@ -81,6 +81,6 @@ abstract class DispatcherFilter implements CakeEventListener {
* keys in the data property.
* @return mixed boolean to stop the event dispatching or null to continue
**/
public function afterDispatch($event) {
public function afterDispatch(CakeEvent $event) {
}
}

View file

@ -40,7 +40,7 @@ class AssetDispatcher extends DispatcherFilter {
* @param CakeEvent $event containing the request and response object
* @return CakeResponse if the client is requesting a recognized asset, null otherwise
*/
public function beforeDispatch($event) {
public function beforeDispatch(CakeEvent $event) {
$url = $event->data['request']->url;
if (strpos($url, '..') !== false || strpos($url, '.') === false) {
return;
@ -77,7 +77,7 @@ class AssetDispatcher extends DispatcherFilter {
* @param CakeEvent $event containing the request and response object
* @return CakeResponse if the client is requesting a recognized asset, null otherwise
*/
protected function _filterAsset($event) {
protected function _filterAsset(CakeEvent $event) {
$url = $event->data['request']->url;
$response = $event->data['response'];
$filters = Configure::read('Asset.filter');

View file

@ -36,7 +36,7 @@ class CacheDispatcher extends DispatcherFilter {
* @param CakeEvent $event containing the request and response object
* @return CakeResponse with cached content if found, null otherwise
*/
public function beforeDispatch($event) {
public function beforeDispatch(CakeEvent $event) {
if (Configure::read('Cache.check') !== true) {
return;
}