removed sentence about meta-factory-method

This commit is contained in:
Dominik Liebler 2013-11-11 15:15:08 +01:00
parent 223d6757cb
commit 2c301f2b74

View File

@ -4,8 +4,7 @@ namespace DesignPatterns\Builder;
/**
* Director is part of the builder pattern. It knows the interface of the builder
* and build a complex object with the help of the builder.
* If you make it abstract, this becomes a "meta-factory-method" very powerfull.
* and builds a complex object with the help of the builder.
*
* You can also inject many builders instead of one to build more complex objects
*/