added new example for Composite pattern

This commit is contained in:
Dominik Liebler
2011-08-27 10:05:15 +02:00
parent 891e9ebe1a
commit b0f84c319b

View File

@@ -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