eZ\Publish\Core\FieldType\FieldSettings::offsetGet PHP 메소드

offsetGet() 공개 메소드

Returns value from internal array, identified by $index.
public offsetGet ( string $index ) : mixed
$index string
리턴 mixed
    public function offsetGet($index)
    {
        if (!parent::offsetExists($index)) {
            throw new PropertyNotFoundException($index, __CLASS__);
        }
        return parent::offsetGet($index);
    }