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

18 lines
380 B
PHP

<?php
namespace Ratchet\Resource\Command;
use Ratchet\SocketInterface;
abstract class ActionTemplate implements ActionInterface {
/**
* @var Ratchet\SocketInterface
*/
protected $_socket;
public function __construct(SocketInterface $socket) {
$this->_socket = $socket;
}
public function getSocket() {
return $this->_socket;
}
}