diff --git a/src/Cookie/ContextCookie.php b/src/Cookie/ContextCookie.php index 953e2eb..89caf43 100644 --- a/src/Cookie/ContextCookie.php +++ b/src/Cookie/ContextCookie.php @@ -46,4 +46,10 @@ public function store() $this->getContext()->cookies()->store($this->name(), $this->_getRawValue(), $this->ttl()); return $this; } + + public function delete() + { + $this->getContext()->cookies()->delete($this->name()); + return $this; + } }