mxmbsocket/src/Ratchet/Application/WebSocket/Command/Action/Pong.php
Chris Boden ad9b8c1644 psr convention
Renamed lib to src
2012-01-30 17:11:30 -05:00

12 lines
304 B
PHP

<?php
namespace Ratchet\Application\WebSocket\Command\Action;
use Ratchet\Resource\Command\ActionTemplate;
use Ratchet\Application\ApplicationInterface;
/**
* Not yet implemented/completed
*/
class Pong extends ActionTemplate {
public function execute(ApplicationInterface $scope = null) {
}
}