コード例 #1
0
ファイル: CICookie.php プロジェクト: laggards/sentinel-lumen
 /**
  * {@inheritDoc}
  */
 public function forget()
 {
     $this->input->set_cookie(['name' => $this->options['name'], 'value' => '', 'expiry' => '']);
 }
コード例 #2
0
ファイル: CICookie.php プロジェクト: hackGFS/api
 /**
  * Remove the Sentry cookie.
  *
  * @return void
  */
 public function forget()
 {
     $this->input->set_cookie(array('name' => $this->getKey(), 'value' => '', 'expiry' => ''));
 }