
Major restructure, dropped aggregate idea, can't get around php golden hammer, the all mighty array, problem Unit tests broken
13 lines
190 B
PHP
13 lines
190 B
PHP
<?php
|
|
namespace Ratchet\Server;
|
|
use Ratchet\Socket;
|
|
|
|
class Client {
|
|
protected $_socket;
|
|
|
|
public function __construct(Socket $socket) {
|
|
$this->_socket = $socket;
|
|
}
|
|
|
|
|
|
} |