mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-24 01:32:22 +01:00
18 lines
289 B
PHP
18 lines
289 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Behavioral\NullObject;
|
|
|
|
/**
|
|
* PrintLogger is a logger that prints the log entry to standard output.
|
|
*/
|
|
class PrintLogger implements LoggerInterface
|
|
{
|
|
/**
|
|
* @param string $str
|
|
*/
|
|
public function log($str)
|
|
{
|
|
echo $str;
|
|
}
|
|
}
|