mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-06-29 12:43:02 +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
|
|
}
|
|
}
|