mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-04-29 03:09:11 +02:00
14 lines
192 B
PHP
14 lines
192 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Behavioral\NullObject;
|
|
|
|
class NullLogger implements Logger
|
|
{
|
|
public function log(string $str)
|
|
{
|
|
// do nothing
|
|
}
|
|
}
|