From 2c301f2b749c17bc033ae0592c0cc46b3c79fbd5 Mon Sep 17 00:00:00 2001 From: Dominik Liebler Date: Mon, 11 Nov 2013 15:15:08 +0100 Subject: [PATCH] removed sentence about meta-factory-method --- Builder/Director.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Builder/Director.php b/Builder/Director.php index 6a04fad..99317f5 100644 --- a/Builder/Director.php +++ b/Builder/Director.php @@ -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 */