1 | <?php |
||
10 | class HydratedObject |
||
11 | { |
||
12 | /** @var mixed */ |
||
13 | public $foo = 1; |
||
14 | |||
15 | /** @var mixed */ |
||
16 | protected $bar = 2; |
||
17 | |||
18 | //phpcs:disable SlevomatCodingStandard.Classes.UnusedPrivateElements.UnusedProperty |
||
19 | /** @var mixed */ |
||
20 | private $baz = 3; |
||
21 | //phpcs:enable |
||
22 | |||
23 | /** |
||
24 | * Method to be disabled |
||
25 | */ |
||
26 | public function doFoo() : void |
||
29 | |||
30 | /** |
||
31 | * @return mixed |
||
32 | */ |
||
33 | public function __get(string $name) |
||
37 | } |
||
38 |