mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-22 15:51:13 +02:00
16 lines
302 B
PHP
16 lines
302 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Structural\Flyweight;
|
|
|
|
class Word implements Text
|
|
{
|
|
public function __construct(private string $name)
|
|
{
|
|
}
|
|
|
|
public function render(string $extrinsicState): string
|
|
{
|
|
return sprintf('Word %s with font %s', $this->name, $extrinsicState);
|
|
}
|
|
}
|