예제 #1
0
 /**
  * @return Settings
  */
 public function read()
 {
     if (!$this->store->hasKey(self::$key)) {
         return new Settings();
     }
     return $this->store->read(self::$key);
 }
 public function read($id)
 {
     return $this->store->read($id);
 }
 /**
  * @param string $email
  * @return Author
  */
 public function read($email)
 {
     return $this->store->read($email);
 }