1 | <?php |
||
10 | class ClassWithPrivatePropertiesAndParents extends ClassWithPrivatePropertiesAndParent |
||
11 | { |
||
12 | /** @var string */ |
||
13 | private $property0 = 'property0_fromChild'; |
||
|
|||
14 | |||
15 | /** @var string */ |
||
16 | private $property20 = 'property20_fromChild'; |
||
17 | |||
18 | /** @var string */ |
||
19 | private $property30 = 'property30'; |
||
20 | |||
21 | /** @var string */ |
||
22 | protected $property31 = 'property31'; |
||
23 | |||
24 | /** @var string */ |
||
25 | public $property32 = 'property32'; |
||
26 | |||
27 | public function setProperty0(string $property0) : void |
||
31 | |||
32 | public function getProperty0() : string |
||
36 | |||
37 | public function setProperty20(string $property20) : void |
||
41 | |||
42 | public function getProperty20() : string |
||
46 | |||
47 | public function setProperty30(string $property30) : void |
||
51 | |||
52 | public function getProperty30() : string |
||
56 | |||
57 | public function setProperty31(string $property31) : void |
||
61 | |||
62 | public function getProperty31() : string |
||
66 | |||
67 | public function setProperty32(string $property32) : void |
||
71 | |||
72 | public function getProperty32() : string |
||
76 | } |
||
77 |