예제 #1
0
파일: User.php 프로젝트: BibleBowl/account
 /**
  * Retract the given role from the model.
  *
  * @param \Silber\Bouncer\Database\Role|string $role
  *
  * @return $this
  */
 public function retract(Role $role)
 {
     if (DatabaseSeeder::isSeeding() === false && $role->hasMailchimpInterest()) {
         event('user.role.removed', [$this, $role]);
     }
     return $this->parentRetract($role);
 }