From 4bbd844b239880fe8eb1d721c9a955a3465c7c92 Mon Sep 17 00:00:00 2001 From: Alexander Makarov Date: Mon, 6 Jan 2014 15:14:36 +0400 Subject: [PATCH] fixes #1796 --- framework/yii/base/Controller.php | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/framework/yii/base/Controller.php b/framework/yii/base/Controller.php index d449d0c..9b5464f 100644 --- a/framework/yii/base/Controller.php +++ b/framework/yii/base/Controller.php @@ -235,18 +235,6 @@ class Controller extends Component implements ViewContextInterface } /** - * Returns the request parameters that will be used for action parameter binding. - * Default implementation simply returns an empty array. - * Child classes may override this method to customize the parameters to be provided - * for action parameter binding (e.g. `$_GET`). - * @return array the request parameters (name-value pairs) to be used for action parameter binding. - */ - public function getActionParams() - { - return []; - } - - /** * @return string the controller ID that is prefixed with the module ID (if any). */ public function getUniqueId()