SAREhub/PHP_Commons

View on GitHub
src/SAREhub/Commons/Logger/LoggerFactory.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace SAREhub\Commons\Logger;

use Psr\Log\LoggerInterface;

interface LoggerFactory
{

    /**
     * @param string $name
     * @return LoggerInterface
     */
    public function create($name);
}