コード例 #1
0
ファイル: Authorship.php プロジェクト: FiftyNine/ScpperDB
 /**
  * {@inheritDoc}
  */
 public function getUser()
 {
     if (!isset($this->user)) {
         $this->user = $this->userMapper->find($this->userId);
     }
     return $this->user;
 }
コード例 #2
0
ファイル: UserService.php プロジェクト: FiftyNine/ScpperDB
 /**
  * 
  * {@inheritDoc}
  */
 public function find($id)
 {
     return $this->userMapper->find($id);
 }