eZ\Publish\Core\FieldType\FieldSettings::offsetGet PHP Method

offsetGet() public method

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