8 lines
172 B
PHP
8 lines
172 B
PHP
<?php
|
|
namespace Ratchet;
|
|
|
|
interface ServerInterface {
|
|
function attatchApplication(ApplicationInterface $app);
|
|
|
|
function run($address = '127.0.0.1', $port = 1025);
|
|
} |