From b0f84c319bb60d6d512ddc206bc329a3e4b9c82a Mon Sep 17 00:00:00 2001 From: Dominik Liebler Date: Sat, 27 Aug 2011 10:05:15 +0200 Subject: [PATCH] added new example for Composite pattern --- Composite/Composite.php | 1 + 1 file changed, 1 insertion(+) diff --git a/Composite/Composite.php b/Composite/Composite.php index 65aca01..4236d44 100644 --- a/Composite/Composite.php +++ b/Composite/Composite.php @@ -11,6 +11,7 @@ namespace DesignPatterns; * Example: * - a form class instance handles all its form elements like a single instance of the form, when render() is called, it * subsequently runs trough all its child elements and calls render() on them + * - Zend_Config: a tree of configuration options, each one is a Zend_Config object * */ class Form