Commit 64d57b39 by Benjamin Wöster

add checks for HEAD request

parent d02e7d40
......@@ -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.
*/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment