function RendererTest::providerAccessValues
Provides a list of both booleans.
Return value
array A list of boolean values and AccessResult objects.
File
- 
              core/tests/ Drupal/ Tests/ Core/ Render/ RendererTest.php, line 780 
Class
Namespace
Drupal\Tests\Core\RenderCode
public static function providerAccessValues() {
  return [
    [
      FALSE,
    ],
    [
      TRUE,
    ],
    [
      AccessResult::forbidden(),
    ],
    [
      AccessResult::allowed(),
    ],
  ];
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
