Files
DesignPatternsPHP/Creational/FactoryMethod/FileLoggerFactory.php
2018-06-15 18:18:26 +02:00

22 lines
374 B
PHP

<?php
namespace DesignPatterns\Creational\FactoryMethod;
class FileLoggerFactory implements LoggerFactory
{
/**
* @var string
*/
private $filePath;
public function __construct(string $filePath)
{
$this->filePath = $filePath;
}
public function createLogger(): Logger
{
return new FileLogger($this->filePath);
}
}