mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-09-25 13:59:08 +02:00
10 lines
173 B
PHP
10 lines
173 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Structural\Flyweight;
|
|
|
|
interface FlyweightInterface
|
|
{
|
|
public function render(string $extrinsicState): string;
|
|
}
|