mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-06-28 20:23:34 +02:00
12 lines
230 B
PHP
12 lines
230 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;
|
|
}
|