public static function Request::getHttpMethodParameterOverride in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/http-foundation/Request.php \Symfony\Component\HttpFoundation\Request::getHttpMethodParameterOverride()
Checks whether support for the _method request parameter is enabled.
Return value
bool True when the _method request parameter is enabled, false otherwise
1 call to Request::getHttpMethodParameterOverride()
- RequestTest::testGetSetMethod in vendor/
symfony/ http-foundation/ Tests/ RequestTest.php - @covers Symfony\Component\HttpFoundation\Request::setMethod @covers Symfony\Component\HttpFoundation\Request::getMethod
File
- vendor/
symfony/ http-foundation/ Request.php, line 697
Class
- Request
- Request represents an HTTP request.
Namespace
Symfony\Component\HttpFoundationCode
public static function getHttpMethodParameterOverride() {
return self::$httpMethodParameterOverride;
}