mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-05-12 01:15:29 +02:00
12 lines
215 B
PHP
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);
|
|
}
|