1 | <?php |
||
10 | class ClassWithMixedProperties |
||
11 | { |
||
12 | /** @var string */ |
||
13 | public $publicProperty0 = 'publicProperty0'; |
||
14 | |||
15 | /** @var string */ |
||
16 | public $publicProperty1 = 'publicProperty1'; |
||
17 | |||
18 | /** @var string */ |
||
19 | public $publicProperty2 = 'publicProperty2'; |
||
20 | |||
21 | /** @var string */ |
||
22 | protected $protectedProperty0 = 'protectedProperty0'; |
||
23 | |||
24 | /** @var string */ |
||
25 | protected $protectedProperty1 = 'protectedProperty1'; |
||
26 | |||
27 | /** @var string */ |
||
28 | protected $protectedProperty2 = 'protectedProperty2'; |
||
29 | |||
30 | /** @var string */ |
||
31 | private $privateProperty0 = 'privateProperty0'; |
||
32 | |||
33 | /** @var string */ |
||
34 | private $privateProperty1 = 'privateProperty1'; |
||
35 | |||
36 | /** @var string */ |
||
37 | private $privateProperty2 = 'privateProperty2'; |
||
38 | |||
39 | public function setPrivateProperty0(string $privateProperty0) : void |
||
43 | |||
44 | public function getPrivateProperty0() : string |
||
48 | |||
49 | public function setPrivateProperty1(string $privateProperty1) : void |
||
53 | |||
54 | public function getPrivateProperty1() : string |
||
58 | |||
59 | public function setPrivateProperty2(string $privateProperty2) : void |
||
63 | |||
64 | public function getPrivateProperty2() : string |
||
68 | |||
69 | public function setProtectedProperty0(string $protectedProperty0) : void |
||
73 | |||
74 | public function getProtectedProperty0() : string |
||
78 | |||
79 | public function setProtectedProperty1(string $protectedProperty1) : void |
||
83 | |||
84 | public function getProtectedProperty1() : string |
||
88 | |||
89 | public function setProtectedProperty2(string $protectedProperty2) : void |
||
93 | |||
94 | public function getProtectedProperty2() : string |
||
98 | |||
99 | public function setPublicProperty0(string $publicProperty0) : void |
||
103 | |||
104 | public function getPublicProperty0() : string |
||
108 | |||
109 | public function setPublicProperty1(string $publicProperty1) : void |
||
113 | |||
114 | public function getPublicProperty1() : string |
||
118 | |||
119 | public function setPublicProperty2(string $publicProperty2) : void |
||
123 | |||
124 | public function getPublicProperty2() : string |
||
128 | } |
||
129 |