8 lines
198 B
PHP
8 lines
198 B
PHP
<?php
|
|
namespace Ratchet\Wamp\Stub;
|
|
use Ratchet\WebSocket\WsServerInterface;
|
|
use Ratchet\Wamp\WampServerInterface;
|
|
|
|
interface WsWampServerInterface extends WsServerInterface, WampServerInterface {
|
|
}
|