1 | <?php |
||
10 | class ClassWithProtectedProperties |
||
11 | { |
||
12 | /** @var string */ |
||
13 | protected $property0 = 'property0'; |
||
14 | |||
15 | /** @var string */ |
||
16 | protected $property1 = 'property1'; |
||
17 | |||
18 | /** @var string */ |
||
19 | protected $property2 = 'property2'; |
||
20 | |||
21 | /** @var string */ |
||
22 | protected $property3 = 'property3'; |
||
23 | |||
24 | /** @var string */ |
||
25 | protected $property4 = 'property4'; |
||
26 | |||
27 | /** @var string */ |
||
28 | protected $property5 = 'property5'; |
||
29 | |||
30 | /** @var string */ |
||
31 | protected $property6 = 'property6'; |
||
32 | |||
33 | /** @var string */ |
||
34 | protected $property7 = 'property7'; |
||
35 | |||
36 | /** @var string */ |
||
37 | protected $property8 = 'property8'; |
||
38 | |||
39 | /** @var string */ |
||
40 | protected $property9 = 'property9'; |
||
41 | |||
42 | public function setProperty0(string $property0) : void |
||
46 | |||
47 | public function getProperty0() : string |
||
51 | |||
52 | public function setProperty1(string $property1) : void |
||
56 | |||
57 | public function getProperty1() : string |
||
61 | |||
62 | public function setProperty2(string $property2) : void |
||
66 | |||
67 | public function getProperty2() : string |
||
71 | |||
72 | public function setProperty3(string $property3) : void |
||
76 | |||
77 | public function getProperty3() : string |
||
81 | |||
82 | public function setProperty4(string $property4) : void |
||
86 | |||
87 | public function getProperty4() : string |
||
91 | |||
92 | public function setProperty5(string $property5) : void |
||
96 | |||
97 | public function getProperty5() : string |
||
101 | |||
102 | public function setProperty6(string $property6) : void |
||
106 | |||
107 | public function getProperty6() : string |
||
111 | |||
112 | public function setProperty7(string $property7) : void |
||
116 | |||
117 | public function getProperty7() : string |
||
121 | |||
122 | public function setProperty8(string $property8) : void |
||
126 | |||
127 | public function getProperty8() : string |
||
131 | |||
132 | public function setProperty9(string $property9) : void |
||
136 | |||
137 | public function getProperty9() : string |
||
141 | } |
||
142 |