expressly/php-common

View on GitHub
src/Logger/DummyLogger.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Expressly\Logger;

use Psr\Log\LoggerInterface;

/**
 * @codeCoverageIgnore
 */
class DummyLogger implements LoggerInterface
{
    public function emergency($message, array $context = array())
    {
    }

    public function alert($message, array $context = array())
    {
    }

    public function critical($message, array $context = array())
    {
    }

    public function error($message, array $context = array())
    {
    }

    public function warning($message, array $context = array())
    {
    }

    public function notice($message, array $context = array())
    {
    }

    public function info($message, array $context = array())
    {
    }

    public function debug($message, array $context = array())
    {
    }

    public function log($level, $message, array $context = array())
    {
    }
}