示例#1
0
 /**
  * @inheritDoc
  */
 public function get($id)
 {
     $data = $this->storage->read($id);
     if ($data) {
         return new Session($data, ['id' => $id]);
     }
 }
示例#2
0
 /**
  * @inheritDoc & <*****@*****.**>
  */
 public function get($id)
 {
     //        $data = $this->storage->read($id);
     //        if ($data) {
     //            return new Session($data, ['id' => $id]);
     //        }
     return $this->storage->read($id);
 }