Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
DeleteCookie.php
Go to the documentation of this file.
1 <?php
7 
8 use \Magento\Framework\App\RequestInterface;
9 
14 {
19  public function execute()
20  {
21  $cookieName = $this->request->getParam('cookie_name');
22  $this->getCookieManager()->deleteCookie($cookieName);
23  return $this->_response;
24  }
25 }