eZ\Publish\Core\MVC\Symfony\Security\Tests\Voter\ValueObjectVoterTest::supportsAttributeProvider PHP Method

supportsAttributeProvider() public method

    public function supportsAttributeProvider()
    {
        return array(array('foo', false), array(new Attribute('foo', 'bar'), false), array(new Attribute('foo', 'bar', array('some' => 'thing')), false), array(new \stdClass(), false), array(array('foo'), false), array(new Attribute('foo', 'bar', array('valueObject' => $this->getMockForAbstractClass('eZ\\Publish\\API\\Repository\\Values\\ValueObject'))), true));
    }