mxmbsocket/lib/Ratchet/ApplicationInterface.php

15 lines
201 B
PHP

<?php
namespace Ratchet;
interface ApplicationInterface {
/**
* @return string
*/
function getName();
function onConnect();
function onMessage();
function onClose();
}