mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-05-12 17:35:37 +02:00
12 lines
175 B
PHP
12 lines
175 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Behavioral\NullObject;
|
|
|
|
class NullLogger implements LoggerInterface
|
|
{
|
|
public function log(string $str)
|
|
{
|
|
// do nothing
|
|
}
|
|
}
|