Files
DesignPatternsPHP/Behavioral/NullObject/Logger.php
2019-08-19 18:11:49 +02:00

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