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