mxmbsocket/lib/Ratchet/Logging/NullLogger.php
2011-10-28 15:15:23 -04:00

17 lines
266 B
PHP

<?php
namespace Ratchet\Logging;
/**
* Sends all logs into the void
* No one can hear you scream in /dev/null
*/
class NullLogger implements LoggerInterface {
function note($msg) {
}
function warning($msg) {
}
function error($msg) {
}
}