/**
  * Determine if the given user is not a follower of the given project
  *
  * @param  User $user
  * @param  Project $project
  * @return bool
  */
 public function userIsNotFollower(User $user, Project $project)
 {
     return !$project->isUserFollower($user->id);
 }