public function UncacheableTestAccessResult::isNeutral in Drupal 10
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Access/AccessResultTest.php \Drupal\Tests\Core\Access\UncacheableTestAccessResult::isNeutral()
- 9 core/tests/Drupal/Tests/Core/Access/AccessResultTest.php \Drupal\Tests\Core\Access\UncacheableTestAccessResult::isNeutral()
Checks whether this access result indicates access is not yet determined.
Return value
bool When TRUE then isAllowed() and isForbidden() are FALSE.
Overrides AccessResultInterface::isNeutral
File
- core/
tests/ Drupal/ Tests/ Core/ Access/ AccessResultTest.php, line 1009 - Contains \Drupal\Tests\Core\Access\AccessResultTest.
Class
Namespace
Drupal\Tests\Core\AccessCode
public function isNeutral() {
return $this->value === 'NEUTRAL';
}