1
0
mirror of https://github.com/DesignPatternsPHP/DesignPatternsPHP.git synced 2025-07-13 19:36:22 +02:00
Files
DesignPatternsPHP/Behavioral/NullObject/LoggerInterface.php
2019-08-17 21:58:04 +02:00

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);
}