Files
DesignPatternsPHP/Structural/Flyweight/Word.php
2019-12-14 13:41:03 +01:00

19 lines
330 B
PHP

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