mxmbsocket/lib/Ratchet/Resource/Command/ActionInterface.php
Chris Boden 47b7110dc1 Namespaces
Fixed all the namespaces to match new folder structure
2011-11-12 20:51:54 -05:00

19 lines
419 B
PHP

<?php
namespace Ratchet\Resource\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();
}