function CsrfExceptionSubscriber::getHandledFormats
Same name and namespace in other branches
- 11.x core/lib/Drupal/Core/EventSubscriber/CsrfExceptionSubscriber.php \Drupal\Core\EventSubscriber\CsrfExceptionSubscriber::getHandledFormats()
Specifies the request formats this subscriber will respond to.
Return value
array An indexed array of the format machine names that this subscriber will attempt to process, such as "html" or "json". Returning an empty array will apply to all formats.
Overrides HttpExceptionSubscriberBase::getHandledFormats
File
-
core/
lib/ Drupal/ Core/ EventSubscriber/ CsrfExceptionSubscriber.php, line 22
Class
- CsrfExceptionSubscriber
- Handles exceptions related to CSRF access.
Namespace
Drupal\Core\EventSubscriberCode
protected function getHandledFormats() : array {
return [
'html',
];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.