9 lines
227 B
PHP
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) {
|
|
}
|
|
} |