mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-24 16:51:19 +02:00
12 lines
228 B
PHP
12 lines
228 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Creational\StaticFactory;
|
|
|
|
class FormatNumber implements Formatter
|
|
{
|
|
public function format(string $input): string
|
|
{
|
|
return number_format($input);
|
|
}
|
|
}
|