PHPDaemon\Clients\IRC\Channel::removeMode PHP Method

removeMode() public method

public removeMode ( string $target, string $mode )
$target string
$mode string
    public function removeMode($target, $mode)
    {
        if (!isset($this->nicknames[$target])) {
            return;
        }
        $participant = $this->nicknames[$target];
        $participant->mode = str_replace($mode, '', $participant->mode);
        $participant->onModeUpdate();
    }