예제 #1
0
파일: SessionStorage.php 프로젝트: jamm/mvc
 public function save(ISession $Session)
 {
     if (!$Session->getId()) {
         return $this->insert($Session);
     }
     return $this->Storage->set($Session->getId(), $Session, $this->expiration_time);
 }