Neos\Flow\Tests\Unit\Security\RequestPattern\UriTest::matchRequestDataProvider PHP Method

matchRequestDataProvider() public method

    public function matchRequestDataProvider()
    {
        return [['uriPath' => '', 'pattern' => '.*', 'shouldMatch' => true], ['uriPath' => '', 'pattern' => '/some/nice/.*', 'shouldMatch' => false], ['uriPath' => '/some/nice/path/to/index.php', 'pattern' => '/some/nice/.*', 'shouldMatch' => true], ['uriPath' => '/some/other/path', 'pattern' => '.*/other/.*', 'shouldMatch' => true]];
    }