Files
DesignPatternsPHP/Structural/Flyweight/Word.php
Dominik Liebler 4678b5d86f PHP8
2021-04-12 14:04:45 +02:00

16 lines
282 B
PHP

<?php
namespace DesignPatterns\Structural\Flyweight;
class Word implements Text
{
public function __construct(private string $name)
{
}
public function render(string $font): string
{
return sprintf('Word %s with font %s', $this->name, $font);
}
}