fixed eol and typecast

This commit is contained in:
janukobytsch
2015-02-02 15:36:32 +01:00
parent d97f9831d5
commit b2c034ec7f
4 changed files with 49 additions and 52 deletions

View File

@@ -5,8 +5,7 @@ namespace DesignPatterns\Structural\Flyweight;
/**
* An interface through which flyweights can receive and act on extrinsic state
*/
interface FlyweightInterface {
public function draw($extrinsicState);
}
interface FlyweightInterface
{
public function draw($extrinsicState);
}