1 | <?php namespace Knot\Dict; |
||
5 | class ChildDict extends Dict { |
||
6 | |||
7 | /** |
||
8 | * @return self |
||
9 | */ |
||
10 | public function kill() |
||
17 | |||
18 | |||
19 | /** |
||
20 | * @return ParentDict |
||
21 | */ |
||
22 | public function parent() |
||
26 | |||
27 | |||
28 | /** |
||
29 | * In ChildArray's child's parent is parent array. |
||
30 | * |
||
31 | * @return ParentDict |
||
32 | */ |
||
33 | public function childParent() |
||
37 | } |
||
38 |