Example #1
0
 /**
  * {@inheritDoc}
  */
 public function forget()
 {
     $this->input->set_cookie(['name' => $this->options['name'], 'value' => '', 'expiry' => '']);
 }
Example #2
0
 /**
  * Remove the Sentry cookie.
  *
  * @return void
  */
 public function forget()
 {
     $this->input->set_cookie(array('name' => $this->getKey(), 'value' => '', 'expiry' => ''));
 }