10 lines
154 B
PHP
10 lines
154 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Xentral\Components\Logger;
|
||
|
|
|
||
|
|
use Psr\Log\LoggerInterface as PsrLoggerInterface;
|
||
|
|
|
||
|
|
interface LoggerInterface extends PsrLoggerInterface
|
||
|
|
{
|
||
|
|
}
|