You are here

public function ChainRequestPolicyTest::providerAllowIfAnyRuleReturnedAllow in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/PageCache/ChainRequestPolicyTest.php \Drupal\Tests\Core\PageCache\ChainRequestPolicyTest::providerAllowIfAnyRuleReturnedAllow()
  2. 9 core/tests/Drupal/Tests/Core/PageCache/ChainRequestPolicyTest.php \Drupal\Tests\Core\PageCache\ChainRequestPolicyTest::providerAllowIfAnyRuleReturnedAllow()

Provides test data for testAllowIfAnyRuleReturnedAllow.

Return value

array Test input and expected result.

File

core/tests/Drupal/Tests/Core/PageCache/ChainRequestPolicyTest.php, line 126

Class

ChainRequestPolicyTest
@coversDefaultClass \Drupal\Core\PageCache\ChainRequestPolicy @group PageCache

Namespace

Drupal\Tests\Core\PageCache

Code

public function providerAllowIfAnyRuleReturnedAllow() {
  return [
    [
      [
        RequestPolicyInterface::ALLOW,
      ],
    ],
    [
      [
        NULL,
        RequestPolicyInterface::ALLOW,
      ],
    ],
  ];
}