13 lines
183 B
PHP
13 lines
183 B
PHP
<?php
|
|
namespace Ratchet\Logging;
|
|
|
|
class NullLogger implements LoggerInterface {
|
|
function note($msg) {
|
|
}
|
|
|
|
function warning($msg) {
|
|
}
|
|
|
|
function error($msg) {
|
|
}
|
|
} |