mxmbsocket/lib/Ratchet/Logging/LoggerInterface.php
Chris Boden 5ee0d1291d Logging
Added logging to application, monolog adapter
2011-10-24 10:38:26 -04:00

19 lines
255 B
PHP

<?php
namespace Ratchet\Logging;
interface LoggerInterface {
/**
* @param string
*/
function note($msg);
/**
* @param string
*/
function warning($msg);
/**
* @param string
*/
function error($msg);
}