DesignPatternsPHP/NullObject/PrintLogger.php
2013-05-13 21:49:33 +02:00

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;
}
}