mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-13 11:26:22 +02:00
14 lines
231 B
PHP
14 lines
231 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Structural\Flyweight;
|
|
|
|
/**
|
|
* This is the interface that all flyweights need to implement
|
|
*/
|
|
interface Text
|
|
{
|
|
public function render(string $extrinsicState): string;
|
|
}
|