mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-09-27 06:49:11 +02:00
408 B
Executable File
408 B
Executable File
Composite
Purpose
To treat a group of objects the same way as a single instance of the object.
Examples
- a form class instance handles all its form elements like a single instance of the form, when
render()
is called, it subsequently runs through all its child elements and callsrender()
on them Zend_Config
: a tree of configuration options, each one is aZend_Config
object itself