mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-05-15 10:55:48 +02:00
18 lines
286 B
PHP
18 lines
286 B
PHP
<?php
|
|
|
|
/*
|
|
* DesignPatternPHP
|
|
*/
|
|
|
|
namespace DesignPatterns\NullObject;
|
|
|
|
/**
|
|
* LoggerInterface is a contract for logging something
|
|
*
|
|
* Key-feaature : NullLogger MUST inherit from this interface like any other Loggers
|
|
*/
|
|
interface LoggerInterface
|
|
{
|
|
|
|
public function log($str);
|
|
} |