| 1 | <?php |
||
| 10 | class ClassWithPrivatePropertiesAndParent extends ClassWithPrivateProperties |
||
| 11 | { |
||
| 12 | /** @var string */ |
||
| 13 | private $property0 = 'property0_fromChild'; |
||
|
|
|||
| 14 | |||
| 15 | /** @var string */ |
||
| 16 | private $property1 = 'property1_fromChild'; |
||
| 17 | |||
| 18 | /** @var string */ |
||
| 19 | private $property20 = 'property20'; |
||
| 20 | |||
| 21 | /** @var string */ |
||
| 22 | protected $property21 = 'property21'; |
||
| 23 | |||
| 24 | /** @var string */ |
||
| 25 | public $property22 = 'property22'; |
||
| 26 | |||
| 27 | public function setProperty0(string $property0) : void |
||
| 31 | |||
| 32 | public function getProperty0() : string |
||
| 36 | |||
| 37 | public function setProperty1(string $property1) : void |
||
| 41 | |||
| 42 | public function getProperty1() : string |
||
| 46 | |||
| 47 | public function setProperty20(string $property20) : void |
||
| 51 | |||
| 52 | public function getProperty20() : string |
||
| 56 | |||
| 57 | public function setProperty21(string $property21) : void |
||
| 61 | |||
| 62 | public function getProperty21() : string |
||
| 66 | |||
| 67 | public function setProperty22(string $property22) : void |
||
| 71 | |||
| 72 | public function getProperty22() : string |
||
| 76 | } |
||
| 77 |