mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-05-24 07:19:44 +02:00
20 lines
264 B
PHP
20 lines
264 B
PHP
<?php
|
|
|
|
/*
|
|
* DesignPatternPHP
|
|
*/
|
|
|
|
namespace DesignPatterns\NullObject;
|
|
|
|
/**
|
|
* PrintLogger is a logger that prints the log entry to standard output
|
|
*/
|
|
class PrintLogger implements LoggerInterface
|
|
{
|
|
|
|
public function log($str)
|
|
{
|
|
echo $str;
|
|
}
|
|
|
|
} |