Opensoft\Rollout\Feature::removeUser PHP Method

removeUser() public method

public removeUser ( RolloutUserInterface $user )
$user RolloutUserInterface
    public function removeUser(RolloutUserInterface $user)
    {
        if (($key = array_search($user->getRolloutIdentifier(), $this->users)) !== false) {
            unset($this->users[$key]);
        }
    }