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