14 lines
265 B
PHP
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() {
|
|
}
|
|
} |