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