DesignPatternsPHP/Structural/Flyweight/FlyweightInterface.php
Christophe Vidal c8e0c74f46 Fixed style
2016-06-14 08:50:54 +07:00

15 lines
273 B
PHP

<?php
namespace DesignPatterns\Structural\Flyweight;
/**
* An interface through which flyweights can receive and act on extrinsic state.
*/
interface FlyweightInterface
{
/**
* @param string $extrinsicState
*/
public function draw($extrinsicState);
}