1 | <?php |
||
5 | trait CompositeTrait |
||
6 | { |
||
7 | /** |
||
8 | * Override this function to return an associative |
||
9 | * array with all the children. |
||
10 | * |
||
11 | * The keys will be the same used for the composite |
||
12 | * method calls. |
||
13 | */ |
||
14 | protected function compositeTraitGetChildren() |
||
18 | |||
19 | public function __call($method, $arguments) |
||
32 | } |
||
33 |