Askedio\LaravelRatchet\RatchetServer::sendAll PHP Method

sendAll() public method

Send a message to all connections.
public sendAll ( [type] $message ) : [type]
$message [type]
return [type]
    public function sendAll($message)
    {
        foreach ($this->clients as $client) {
            $client->send($message);
        }
    }