fixed CS issues

This commit is contained in:
Dominik Liebler
2016-04-07 08:41:33 +02:00
parent ef0226efa1
commit b8e602f66d
2 changed files with 3 additions and 2 deletions

View File

@ -19,7 +19,8 @@ class CharacterFlyweight implements FlyweightInterface
* Constructor.
* @param string $name
*/
public function __construct($name) {
public function __construct($name)
{
$this->name = $name;
}

View File

@ -31,6 +31,6 @@ class FlyweightFactory
public function totalNumber()
{
return sizeof($this->pool);
return sizeof($this->pool);
}
}