public function RequestTrait::getMethod in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/zendframework/zend-diactoros/src/RequestTrait.php \Zend\Diactoros\RequestTrait::getMethod()
Retrieves the HTTP method of the request.
Return value
string Returns the request method.
File
- vendor/
zendframework/ zend-diactoros/ src/ RequestTrait.php, line 166
Class
- RequestTrait
- Trait with common request behaviors.
Namespace
Zend\DiactorosCode
public function getMethod() {
return $this->method;
}