remove Interface-Suffix

This commit is contained in:
Dominik Liebler
2019-08-19 17:02:15 +02:00
parent 0582f2fb57
commit 27bd89dd63
6 changed files with 9 additions and 9 deletions

View File

@@ -0,0 +1,12 @@
<?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);
}