<?php
namespace demo\Creational\FactoryMethod;
interface LoggerFactory
{
public function createLogger() : Logger;
}