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);
    }