mirror of
https://github.com/bitinflow/expose.git
synced 2026-03-13 21:45:55 +00:00
30 lines
629 B
PHP
30 lines
629 B
PHP
<?php
|
|
|
|
namespace App\WebSockets;
|
|
|
|
use Ratchet\ConnectionInterface;
|
|
use Ratchet\RFC6455\Messaging\MessageInterface;
|
|
use Ratchet\WebSocket\MessageComponentInterface;
|
|
|
|
class Socket implements MessageComponentInterface
|
|
{
|
|
public static $connections = [];
|
|
|
|
public function onOpen(ConnectionInterface $connection)
|
|
{
|
|
self::$connections[] = $connection;
|
|
}
|
|
|
|
public function onMessage(ConnectionInterface $from, MessageInterface $msg)
|
|
{
|
|
}
|
|
|
|
public function onClose(ConnectionInterface $connection)
|
|
{
|
|
}
|
|
|
|
public function onError(ConnectionInterface $connection, \Exception $e)
|
|
{
|
|
}
|
|
}
|