Xpressengine\Permission\Permission::offsetGet PHP Method

offsetGet() public method

Get an item at a given offset.
public offsetGet ( mixed $offset ) : mixed
$offset mixed array offset
return mixed
    public function offsetGet($offset)
    {
        return isset($this->grant->{$offset}) ? $this->grant->{$offset} : ($this->parent !== null ? $this->parent[$offset] : null);
    }