public AccessResultForbidden::getReason()
Gets the reason for this access result.
Return value
string|null The reason of this access result or NULL if no reason is provided.
Overrides AccessResultReasonInterface::getReason
File
- core/lib/Drupal/Core/Access/AccessResultForbidden.php, line 38
Class
- AccessResultForbidden
- Value object indicating a forbidden access result, with cacheability metadata.
Namespace
Drupal\Core\Access
Code
1 2 3 | public function getReason() { return $this ->reason; } |
Please login to continue.