PHPDaemon\Servers\IRCBouncer\Connection::msgFromBNC PHP Method

msgFromBNC() public method

public msgFromBNC ( string $msg )
$msg string
    public function msgFromBNC($msg)
    {
        if ($this->usermask === null) {
            return;
        }
        $this->command('$!@' . $this->pool->config->servername->value, 'PRIVMSG', $this->usermask, $msg);
    }