| Total Complexity | 2 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | final class Post2 |
||
| 8 | { |
||
| 9 | public $id = 123; |
||
| 10 | public $content = 'test'; |
||
| 11 | private $secret = 's'; |
||
| 12 | |||
| 13 | public function getSecret(): string |
||
| 14 | { |
||
| 15 | return $this->secret; |
||
| 16 | } |
||
| 17 | |||
| 18 | /** @noinspection MagicMethodsValidityInspection */ |
||
| 19 | public function __get($name) |
||
| 20 | { |
||
| 21 | return $this->$name; |
||
| 22 | } |
||
| 24 |