add checks for GET and OPTIONS requests

This commit is contained in:
Benjamin Wöster
2013-09-10 14:27:22 +02:00
parent 590121c4ff
commit d02e7d4004

View File

@ -136,6 +136,24 @@ class Request extends \yii\base\Request
} }
} }
/**
* Returns whether this is a GET request.
* @return boolean whether this is a GET request.
*/
public function getIsGet()
{
return $this->getMethod() === 'GET';
}
/**
* Returns whether this is an OPTIONS request.
* @return boolean whether this is a OPTIONS request.
*/
public function getIsOptions()
{
return $this->getMethod() === 'OPTIONS';
}
/** /**
* Returns whether this is a POST request. * Returns whether this is a POST request.
* @return boolean whether this is a POST request. * @return boolean whether this is a POST request.