From c16c1812474dea418e73129b4034580bceb8164c Mon Sep 17 00:00:00 2001 From: egorpromo Date: Sat, 16 Nov 2013 23:25:44 +0700 Subject: [PATCH] Must be one method to get _GET. getGet() is just duplication --- framework/yii/web/Request.php | 9 --------- 1 file changed, 9 deletions(-) diff --git a/framework/yii/web/Request.php b/framework/yii/web/Request.php index 2071afa13c..9e525fd6ce 100644 --- a/framework/yii/web/Request.php +++ b/framework/yii/web/Request.php @@ -311,15 +311,6 @@ class Request extends \yii\base\Request return isset($_GET[$name]) ? $_GET[$name] : $defaultValue; } - /** - * Returns the GET request parameter values. - * @return array the GET request parameter values - */ - public function getGet() - { - return $_GET; - } - /** * Returns the named POST parameter value. * If the POST parameter does not exist, the second parameter to this method will be returned.