PHPDaemon\Clients\IRC\Connection::addMode PHP Метод

addMode() публичный Метод

public addMode ( string $channel, string $target, string $mode )
$channel string
$target string
$mode string
    public function addMode($channel, $target, $mode)
    {
        if ($channel) {
            $this->channel($channel)->addMode($target, $mode);
        } else {
            if (mb_orig_strpos($this->mode, $mode) === false) {
                $this->mode .= $mode;
            }
        }
    }