1
0
mirror of https://github.com/DesignPatternsPHP/DesignPatternsPHP.git synced 2025-05-22 22:39:36 +02:00
Dominik Liebler 644d9cbd49 cs
2013-09-13 12:00:39 +02:00

18 lines
277 B
PHP

<?php
namespace DesignPatterns\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;
}
}