mxmbsocket/lib/Ratchet/Command/ActionInterface.php
Chris Boden 68a618c1cd Command Refactoring
Refactored Command namespace; reusing more code, standardized interfaces
WebSocket handles wrapping messages better/properly now
2011-11-08 09:36:48 -05:00

16 lines
354 B
PHP

<?php
namespace Ratchet\Command;
use Ratchet\SocketInterface;
interface ActionInterface extends CommandInterface {
/**
* Pass the Sockets to execute the command on
* @param Ratchet\SocketInterface
*/
function __construct(SocketInterface $socket);
/**
* @return Ratchet\SocketInterface
*/
function getSocket();
}