1 | <?php |
||
5 | class Chain |
||
6 | { |
||
7 | public function __construct(Chain $child = null, $name = "", $type = "") |
||
16 | |||
17 | public function getName() |
||
21 | |||
22 | public function getType() |
||
26 | |||
27 | /** |
||
28 | * @return Chain |
||
29 | */ |
||
30 | public function getParent() |
||
34 | |||
35 | /** |
||
36 | * @return Chain |
||
37 | */ |
||
38 | public function getChild() |
||
42 | |||
43 | public function setParent(Chain $parent) |
||
47 | |||
48 | private $type; |
||
49 | private $name; |
||
50 | private $parent; |
||
51 | private $child; |
||
52 | } |
||
53 |