This commit is contained in:
Marcel Pociot
2020-04-14 21:19:23 +02:00
commit 2b03398f40
48 changed files with 8099 additions and 0 deletions

29
app/WebSockets/Socket.php Normal file
View File

@@ -0,0 +1,29 @@
<?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)
{
}
}