mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-30 19:50:12 +02:00
9 lines
134 B
PHP
9 lines
134 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Creational\StaticFactory;
|
|
|
|
interface Formatter
|
|
{
|
|
public function format(string $input): string;
|
|
}
|