Drest\Mapping\Annotation\Route::offsetUnset PHP Метод

offsetUnset() публичный Метод

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