eZ\Publish\Core\MVC\Symfony\Matcher\Tests\ContentBased\Matcher\Id\ContentTypeTest::matchContentInfoProvider PHP 메소드

matchContentInfoProvider() 공개 메소드

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