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

offsetUnset() public method

Unset the offset.
public offsetUnset ( mixed $offset )
$offset mixed
    public function offsetUnset($offset)
    {
        if ($this->offsetExists($offset)) {
            unset($this->{$offset});
        }
    }