mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-24 17:52:25 +01:00
12 lines
217 B
PHP
12 lines
217 B
PHP
|
<?php
|
||
|
|
||
|
namespace DesignPatterns\Structural\Flyweight;
|
||
|
|
||
|
/**
|
||
|
* An interface through which flyweights can receive and act on extrinsic state
|
||
|
*/
|
||
|
interface FlyweightInterface {
|
||
|
|
||
|
public function draw($extrinsicState);
|
||
|
|
||
|
}
|