Files
DesignPatternsPHP/Structural/Flyweight/Text.php
2019-08-19 18:11:49 +02:00

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;
}