Drest\Mapping\Annotation\Route::offsetGet PHP Method

offsetGet() public method

Return the value for the offset.
public offsetGet ( mixed $offset ) : mixed
$offset mixed
return mixed
    public function offsetGet($offset)
    {
        return $this->offsetExists($offset) ? $this->{$offset} : null;
    }