diff --git a/framework/web/Request.php b/framework/web/Request.php index c7a510e..766581c 100644 --- a/framework/web/Request.php +++ b/framework/web/Request.php @@ -416,6 +416,7 @@ class Request extends \yii\base\Request /** * Returns the named request body parameter value. + * If the parameter does not exist, the second parameter passed to this method will be returned. * @param string $name the parameter name * @param mixed $defaultValue the default parameter value if the parameter does not exist. * @return mixed the parameter value @@ -492,8 +493,8 @@ class Request extends \yii\base\Request /** * Returns the named GET parameter value. - * If the GET parameter does not exist, the second parameter to this method will be returned. - * @param string $name the GET parameter name. If not specified, whole $_GET is returned. + * If the GET parameter does not exist, the second parameter passed to this method will be returned. + * @param string $name the GET parameter name. * @param mixed $defaultValue the default parameter value if the GET parameter does not exist. * @return mixed the GET parameter value * @see getBodyParam()