eZ\Publish\Core\MVC\Symfony\Matcher\Tests\ContentBased\Matcher\Id\ContentTypeTest::matchLocationProvider PHP Method

matchLocationProvider() public method

    public function matchLocationProvider()
    {
        $data = array();
        $data[] = array(123, $this->generateLocationForContentType(123), true);
        $data[] = array(123, $this->generateLocationForContentType(456), false);
        $data[] = array(array(123, 789), $this->generateLocationForContentType(456), false);
        $data[] = array(array(123, 789), $this->generateLocationForContentType(789), true);
        return $data;
    }