mxmbsocket/lib/Ratchet/ServerInterface.php

8 lines
136 B
PHP

<?php
namespace Ratchet;
interface ServerInterface {
function attatchApplication(ApplicationInterface $app);
function run();
}