mxmbsocket/lib/Ratchet/Protocol/WebSocket/Command/Action/Ping.php
Chris Boden 15ec375405 Closure
onClose hook is triggered upon is CloseConnection command (server side) now.  Allowing applications to handle any final executions before the connection is closed.
Updated some API documentation.
2011-11-08 11:04:30 -05:00

9 lines
227 B
PHP

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