mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-06-26 19:23:33 +02:00
9 lines
148 B
PHP
9 lines
148 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Structural\Flyweight;
|
|
|
|
interface FlyweightInterface
|
|
{
|
|
public function render(string $extrinsicState): string;
|
|
}
|