1 | <?php |
||
10 | class ClassWithStaticProperties |
||
11 | { |
||
12 | /** @var mixed */ |
||
13 | private static $privateStatic; |
||
14 | |||
15 | /** @var mixed */ |
||
16 | protected static $protectedStatic; |
||
17 | |||
18 | /** @var mixed */ |
||
19 | public static $publicStatic; |
||
20 | |||
21 | /** @var mixed */ |
||
22 | private $private; |
||
23 | |||
24 | /** @var mixed */ |
||
25 | private $protected; |
||
26 | |||
27 | /** @var mixed */ |
||
28 | private $public; |
||
29 | |||
30 | /** @return mixed[] */ |
||
31 | public function getStaticProperties() : array |
||
42 | } |
||
43 |