
A bunch of API updates Added read() to SocketInterface Return self for fluid interface in Server
12 lines
304 B
PHP
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) {
|
|
}
|
|
} |