mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-12 02:46:23 +02:00
11 lines
148 B
PHP
11 lines
148 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Creational\FactoryMethod;
|
|
|
|
interface Logger
|
|
{
|
|
public function log(string $message);
|
|
}
|