mxmbsocket/lib/Ratchet/Resource/Command/ActionInterface.php
Chris Boden 5386b4c066 Folder restructure
Just reorganized the folders.  Namespacing broken, unit tests broken, nothing works.
2011-11-12 14:29:10 -05:00

19 lines
410 B
PHP

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