mxmbsocket/tests/Ratchet/Tests/Wamp/Stub/WsWampServerInterface.php
Chris Boden dd8a59df69 [WAMP][Tests] Full namespace coverage
Added `has` method to Topic class
Covering all of WAMP code in unit tests
2012-07-19 11:27:31 -04:00

7 lines
203 B
PHP

<?php
namespace Ratchet\Tests\Wamp\Stub;
use Ratchet\WebSocket\WsServerInterface;
use Ratchet\Wamp\WampServerInterface;
interface WsWampServerInterface extends WsServerInterface, WampServerInterface {
}