/**
  * Handle the command.
  *
  * @param RoleRepositoryInterface $roles
  * @param Authorizer              $authorizer
  */
 public function handle(RoleRepositoryInterface $roles, Authorizer $authorizer)
 {
     if ($guest = $roles->findBySlug('guest')) {
         $authorizer->setGuest($guest);
     }
 }