mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-29 19:20:18 +02:00
12 lines
188 B
PHP
12 lines
188 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Creational\StaticFactory;
|
|
|
|
class FormatString implements Formatter
|
|
{
|
|
public function format(string $input): string
|
|
{
|
|
return $input;
|
|
}
|
|
}
|