/**
  * Get a User by id.
  *
  * @param mixed $id
  *
  * @return User Entity
  */
 public function get($userId)
 {
     return $this->userService->getUser($userId);
 }