mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-25 02:02:26 +01:00
9 lines
122 B
PHP
9 lines
122 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Creational\FactoryMethod;
|
|
|
|
interface Logger
|
|
{
|
|
public function log(string $message);
|
|
}
|