| 1 | <?php |
||
| 15 | class Branch |
||
| 16 | { |
||
| 17 | private $key; |
||
| 18 | private $value; |
||
| 19 | private $label; |
||
| 20 | private $branches; |
||
| 21 | |||
| 22 | 42 | public function __construct($key, $value, $label, BranchCollection $branches = null) |
|
| 29 | |||
| 30 | 12 | public function hasBranches() |
|
| 34 | |||
| 35 | 9 | public function push(Branch $branch) |
|
| 41 | |||
| 42 | 42 | public function __get($key) |
|
| 48 | } |
||
| 49 |