mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-05-03 05:08:10 +02:00
12 lines
173 B
PHP
12 lines
173 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Behavioral\NullObject;
|
|
|
|
class PrintLogger implements LoggerInterface
|
|
{
|
|
public function log(string $str)
|
|
{
|
|
echo $str;
|
|
}
|
|
}
|