function ChainRequestPolicyTest::providerAllowIfAnyRuleReturnedAllow

Same name in other branches
  1. 9 core/tests/Drupal/Tests/Core/PageCache/ChainRequestPolicyTest.php \Drupal\Tests\Core\PageCache\ChainRequestPolicyTest::providerAllowIfAnyRuleReturnedAllow()
  2. 8.9.x core/tests/Drupal/Tests/Core/PageCache/ChainRequestPolicyTest.php \Drupal\Tests\Core\PageCache\ChainRequestPolicyTest::providerAllowIfAnyRuleReturnedAllow()
  3. 10 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 133

Class

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

Namespace

Drupal\Tests\Core\PageCache

Code

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

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.