9 lines
263 B
PHP
9 lines
263 B
PHP
<?php
|
|
namespace Ratchet\Application\WebSocket\Command\Action;
|
|
use Ratchet\Resource\Command\ActionTemplate;
|
|
use Ratchet\Application\ApplicationInterface;
|
|
|
|
class Ping extends ActionTemplate {
|
|
public function execute(ApplicationInterface $scope = null) {
|
|
}
|
|
} |