コード例 #1
0
ファイル: User.php プロジェクト: romeoz/rock
 /**
  * @return boolean whether the user session has started
  */
 public function getIsActive()
 {
     if (!$this->enableSession) {
         return false;
     }
     return $this->storage->exists("{$this->container}.id");
 }