function RoutePathGenerationTraitTest::providerTestCsrfTokenCompleteLifeCycle

Data provider for testCsrfTokenCompleteLifeCycle().

Return value

array An array of route parameters.

File

core/tests/Drupal/Tests/Core/Access/RoutePathGenerationTraitTest.php, line 123

Class

RoutePathGenerationTraitTest
@covers \Drupal\Core\Access\RoutePathGenerationTrait @group Access

Namespace

Drupal\Tests\Core\Access

Code

public static function providerTestCsrfTokenCompleteLifeCycle() : array {
    return [
        [
            [
                'param' => 'value',
            ],
        ],
        [
            [
                'param' => '',
            ],
        ],
        [
            [
                'param' => NULL,
            ],
        ],
        [
            [],
        ],
    ];
}

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