mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-13 19:36:22 +02:00
13 lines
240 B
PHP
13 lines
240 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Behavioral\NullObject;
|
|
|
|
/**
|
|
* Key feature: NullLogger must inherit from this interface like any other loggers
|
|
*/
|
|
interface LoggerInterface
|
|
{
|
|
public function log(string $str);
|
|
}
|