1 | <?php |
||
14 | class ClassWithPrivatePropertiesAndParents extends ClassWithPrivatePropertiesAndParent |
||
15 | { |
||
16 | private $property0 = 'property0_fromChild'; |
||
|
|||
17 | |||
18 | private $property20 = 'property20_fromChild'; |
||
19 | |||
20 | private $property30 = 'property30'; |
||
21 | |||
22 | protected $property31 = 'property31'; |
||
23 | |||
24 | public $property32 = 'property32'; |
||
25 | |||
26 | /** |
||
27 | * @param string $property0 |
||
28 | */ |
||
29 | public function setProperty0($property0) |
||
33 | |||
34 | /** |
||
35 | * @return string |
||
36 | */ |
||
37 | public function getProperty0() |
||
41 | |||
42 | /** |
||
43 | * @param string $property20 |
||
44 | */ |
||
45 | public function setProperty20($property20) |
||
49 | |||
50 | /** |
||
51 | * @return string |
||
52 | */ |
||
53 | public function getProperty20() |
||
57 | |||
58 | /** |
||
59 | * @param string $property30 |
||
60 | */ |
||
61 | public function setProperty30($property30) |
||
65 | |||
66 | /** |
||
67 | * @return string |
||
68 | */ |
||
69 | public function getProperty30() |
||
73 | |||
74 | /** |
||
75 | * @param string $property31 |
||
76 | */ |
||
77 | public function setProperty31($property31) |
||
81 | |||
82 | /** |
||
83 | * @return string |
||
84 | */ |
||
85 | public function getProperty31() |
||
89 | |||
90 | /** |
||
91 | * @param string $property32 |
||
92 | */ |
||
93 | public function setProperty32($property32) |
||
97 | |||
98 | /** |
||
99 | * @return string |
||
100 | */ |
||
101 | public function getProperty32() |
||
105 | } |
||
106 |