1:  2:  3:  4:  5:  6:  7:  8:  9: 10: 11: 12: 13: 14: 
<?php

namespace SAREhub\Commons\Logger;

use Psr\Log\NullLogger;

class NullLoggerFactory implements LoggerFactory
{

    public function create($name)
    {
        return new NullLogger();
    }
}