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