mxmbsocket/lib/Ratchet/Application/WebSocket/Command/Action/Ping.php
Chris Boden cc507e821e Documentation
A bunch of API updates
Added read() to SocketInterface
Return self for fluid interface in Server
2011-11-22 11:33:41 -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 Ping extends ActionTemplate {
public function execute(ApplicationInterface $scope = null) {
}
}