diff --git a/framework/yii/web/Request.php b/framework/yii/web/Request.php index 2b9da0a..1482633 100644 --- a/framework/yii/web/Request.php +++ b/framework/yii/web/Request.php @@ -155,6 +155,15 @@ class Request extends \yii\base\Request } /** + * Returns whether this is a HEAD request. + * @return boolean whether this is a HEAD request. + */ + public function getIsHead() + { + return $this->getMethod() === 'HEAD'; + } + + /** * Returns whether this is a POST request. * @return boolean whether this is a POST request. */