mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-06-12 00:40:52 +02:00
14 lines
214 B
PHP
14 lines
214 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Creational\StaticFactory;
|
|
|
|
class FormatString implements Formatter
|
|
{
|
|
public function format(string $input): string
|
|
{
|
|
return $input;
|
|
}
|
|
}
|