1 | <?php |
||
30 | class ClassWithPrivatePropertiesAndParent extends ClassWithPrivateProperties |
||
31 | { |
||
32 | private $property0 = 'property0_fromChild'; |
||
|
|||
33 | |||
34 | private $property1 = 'property1_fromChild'; |
||
35 | |||
36 | private $property20 = 'property20'; |
||
37 | |||
38 | protected $property21 = 'property21'; |
||
39 | |||
40 | public $property22 = 'property22'; |
||
41 | |||
42 | /** |
||
43 | * @param string $property0 |
||
44 | */ |
||
45 | public function setProperty0($property0) |
||
49 | |||
50 | /** |
||
51 | * @return string |
||
52 | */ |
||
53 | public function getProperty0() |
||
57 | |||
58 | /** |
||
59 | * @param string $property1 |
||
60 | */ |
||
61 | public function setProperty1($property1) |
||
65 | |||
66 | /** |
||
67 | * @return string |
||
68 | */ |
||
69 | public function getProperty1() |
||
73 | |||
74 | /** |
||
75 | * @param string $property20 |
||
76 | */ |
||
77 | public function setProperty20($property20) |
||
81 | |||
82 | /** |
||
83 | * @return string |
||
84 | */ |
||
85 | public function getProperty20() |
||
89 | |||
90 | /** |
||
91 | * @param string $property21 |
||
92 | */ |
||
93 | public function setProperty21($property21) |
||
97 | |||
98 | /** |
||
99 | * @return string |
||
100 | */ |
||
101 | public function getProperty21() |
||
105 | |||
106 | /** |
||
107 | * @param string $property22 |
||
108 | */ |
||
109 | public function setProperty22($property22) |
||
113 | |||
114 | /** |
||
115 | * @return string |
||
116 | */ |
||
117 | public function getProperty22() |
||
121 | } |
||
122 |