/**
  * Fetch a user by id with emails attached
  *
  * @param int $id
  *	
  * @return mixed
  */
 public function findByIdWithMessages($id)
 {
     return $this->repository->findByIdWithMessages($id);
 }