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

9 lines
245 B
PHP

<?php
namespace Ratchet\Application\WebSocket\Command\Action;
use Ratchet\Resource\Command\ActionTemplate;
use Ratchet\ObserverInterface;
class Ping extends ActionTemplate {
public function execute(ObserverInterface $scope = null) {
}
}