Files
DesignPatternsPHP/Behavioral/NullObject/PrintLogger.php
Antonio Spinelli e59d70a0ac start a restructure
2014-03-21 18:03:45 -03: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;
}
}