mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-06-25 18:53:25 +02:00
14 lines
190 B
PHP
14 lines
190 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Behavioral\NullObject;
|
|
|
|
class PrintLogger implements Logger
|
|
{
|
|
public function log(string $str)
|
|
{
|
|
echo $str;
|
|
}
|
|
}
|