mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-06-28 12:14:08 +02:00
12 lines
201 B
PHP
12 lines
201 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Creational\FactoryMethod;
|
|
|
|
class StdoutLogger implements Logger
|
|
{
|
|
public function log(string $message)
|
|
{
|
|
echo $message;
|
|
}
|
|
}
|