mxmbsocket/lib/Ratchet/ServerInterface.php
2011-09-05 18:39:36 -04:00

8 lines
172 B
PHP

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