8 lines
136 B
PHP
8 lines
136 B
PHP
<?php
|
|
namespace Ratchet;
|
|
|
|
interface ServerInterface {
|
|
function attatchApplication(ApplicationInterface $app);
|
|
|
|
function run();
|
|
} |