mxmbsocket/tests/Ratchet/Tests/Mock/Application.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

24 lines
506 B
PHP

<?php
namespace Ratchet\Tests\Mock;
use Ratchet\ReceiverInterface;
use Ratchet\Server;
use Ratchet\Tests\Mock\Socket as MockSocket;
use Ratchet\Socket;
class Application implements ReceiverInterface {
public function getName() {
return 'mock_application';
}
public function setUp(Server $server) {
}
public function handleConnect(Socket $client) {
}
public function handleMessage($msg, Socket $from) {
}
public function handleClose(Socket $client) {
}
}