GuzzleHttp\Tests\CookieJar\SetCookieTest::pathMatchProvider PHP Method

pathMatchProvider() public method

public pathMatchProvider ( )
    public function pathMatchProvider()
    {
        return [['/foo', '/foo', true], ['/foo', '/Foo', false], ['/foo', '/fo', false], ['/foo', '/foo/bar', true], ['/foo', '/foo/bar/baz', true], ['/foo', '/foo/bar//baz', true], ['/foo', '/foobar', false], ['/foo/bar', '/foo', false], ['/foo/bar', '/foobar', false], ['/foo/bar', '/foo/bar', true], ['/foo/bar', '/foo/bar/', true], ['/foo/bar', '/foo/bar/baz', true], ['/foo/bar/', '/foo/bar', false], ['/foo/bar/', '/foo/bar/', true], ['/foo/bar/', '/foo/bar/baz', true]];
    }