Askedio\LaravelRatchet\RatchetServer::sendAll PHP 메소드

sendAll() 공개 메소드

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