mxmbsocket/lib/Ratchet/Application/WebSocket/Command/Action/Pong.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

9 lines
227 B
PHP

<?php
namespace Ratchet\Protocol\WebSocket\Command\Action;
use Ratchet\Command\ActionTemplate;
use Ratchet\SocketObserver;
class Pong extends ActionTemplate {
public function execute(SocketObserver $scope = null) {
}
}