12 lines
307 B
PHP
12 lines
307 B
PHP
<?php
|
|
namespace Ratchet\Protocol\WebSocket;
|
|
use Ratchet\ServerInterface;
|
|
use Ratchet\Protocol\ProtocolInterface;
|
|
|
|
class Server implements ServerInterface, ProtocolInterface {
|
|
protected $_server = null;
|
|
|
|
public function __construct(ServerInterface $server) {
|
|
$this->_server = $server;
|
|
}
|
|
} |