コード例 #1
0
ファイル: SessionStorage.php プロジェクト: macseem/bee-game
 public function delete()
 {
     if (empty($this->session->get('game'))) {
         return false;
     }
     $this->session->offsetUnset('game');
     return true;
 }
コード例 #2
0
ファイル: GameController.php プロジェクト: macseem/bee-game
 public function actionQuit()
 {
     $this->session->offsetUnset('started');
     $this->storage->delete();
     return $this->redirect('/game/index');
 }