Exemplo n.º 1
0
 /**
  * {@inheritDoc}
  */
 public function getUser()
 {
     if (!isset($this->user)) {
         $this->user = $this->userMapper->find($this->userId);
     }
     return $this->user;
 }
Exemplo n.º 2
0
 /**
  * 
  * {@inheritDoc}
  */
 public function find($id)
 {
     return $this->userMapper->find($id);
 }