2016-09-22 10:43:27 +02:00

12 lines
215 B
PHP

<?php
namespace DesignPatterns\Behavioral\NullObject;
/**
* Key feature: NullLogger must inherit from this interface like any other loggers
*/
interface LoggerInterface
{
public function log(string $str);
}