mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-06-06 05:55:09 +02:00
9 lines
147 B
PHP
9 lines
147 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Creational\FactoryMethod;
|
|
|
|
interface Logger
|
|
{
|
|
public function log(string $message);
|
|
}
|