From cc09ef56b9f9a4b6409e98a15dfb2784df07f1df Mon Sep 17 00:00:00 2001 From: Carsten Brandt Date: Wed, 18 Sep 2013 16:01:29 +0200 Subject: [PATCH] updated @property annotations of web\Request --- framework/yii/web/Request.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/framework/yii/web/Request.php b/framework/yii/web/Request.php index eb1652c..9e625f7 100644 --- a/framework/yii/web/Request.php +++ b/framework/yii/web/Request.php @@ -35,6 +35,9 @@ use yii\helpers\Security; * @property boolean $isDelete Whether this is a DELETE request. This property is read-only. * @property boolean $isFlash Whether this is an Adobe Flash or Adobe Flex request. This property is * read-only. + * @property boolean $isGet Whether this is a GET request. This property is read-only. + * @property boolean $isHead Whether this is a HEAD request. This property is read-only. + * @property boolean $isOptions Whether this is a OPTIONS request. This property is read-only. * @property boolean $isPatch Whether this is a PATCH request. This property is read-only. * @property boolean $isPost Whether this is a POST request. This property is read-only. * @property boolean $isPut Whether this is a PUT request. This property is read-only.