mxmbsocket/lib/Ratchet/Server/Client.php
Chris Boden ac8644125c Refactoring
Major restructure, dropped aggregate idea, can't get around php golden hammer, the all mighty array, problem
Unit tests broken
2011-10-24 09:26:15 -04:00

13 lines
190 B
PHP

<?php
namespace Ratchet\Server;
use Ratchet\Socket;
class Client {
protected $_socket;
public function __construct(Socket $socket) {
$this->_socket = $socket;
}
}