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