mxmbsocket/lib/Ratchet/Server.php
2011-09-04 17:30:21 -04:00

14 lines
265 B
PHP

<?php
namespace Ratchet;
use Ratchet\Protocol\ProtocolInterface;
class Server implements ServerInterface {
protected $master = null;
public function __construct(Socket $socket) {
$this->_master = $socket;
}
public function run() {
}
}