Askedio\LaravelRatchet\RatchetServer::sendAll PHP Méthode

sendAll() public méthode

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