function RestResourceConfig::normalizeRestMethod
Normalizes the method.
Parameters
string $method: The request method.
Return value
string The normalized request method.
2 calls to RestResourceConfig::normalizeRestMethod()
- RestResourceConfig::getAuthenticationProvidersForMethodGranularity in core/modules/ rest/ src/ Entity/ RestResourceConfig.php 
- Retrieves a list of supported authentication providers.
- RestResourceConfig::getFormatsForMethodGranularity in core/modules/ rest/ src/ Entity/ RestResourceConfig.php 
- Retrieves a list of supported response formats.
File
- 
              core/modules/ rest/ src/ Entity/ RestResourceConfig.php, line 259 
Class
- RestResourceConfig
- Defines a RestResourceConfig configuration entity class.
Namespace
Drupal\rest\EntityCode
protected function normalizeRestMethod($method) {
  return strtoupper($method);
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
