eZ\Publish\Core\FieldType\Tests\PageTest::providerForTestIsEmptyValue PHP Метод

providerForTestIsEmptyValue() публичный Метод

Returns an array of data provider sets with 2 arguments: 1. The valid input to isEmptyValue() 2. The expected return value from isEmptyValue() For example: return array( array( new PageValue(), true ), array( new PageValue( $this->getPageReference() ), false ), ... );
public providerForTestIsEmptyValue ( ) : array
Результат array
    public function providerForTestIsEmptyValue()
    {
        return array(array(new PageValue(), true), array(new PageValue($this->getPageReference()), false));
    }