mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-21 23:31:14 +02:00
13 lines
198 B
PHP
13 lines
198 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Behavioral\NullObject;
|
|
|
|
class PrintLogger implements LoggerInterface
|
|
{
|
|
public function log(string $str)
|
|
{
|
|
echo $str;
|
|
}
|
|
}
|