<img width="1040" alt="Снимок экрана 2020-11-13 в 10 36 41" src="https://user-images.githubusercontent.com/20436473/99041599-4b193080-259c-11eb-8fd2-f6319315fe38.png"> ``` <?php declare(strict_types = 1); /** * @property-read string $bar */ class HelloWorld { public string $bar; public function __construct() { $this->bar = 'wdadasd'; } } $t = new HelloWorld(); $t->bar = 'aasdasdasdasd'; ?> ``` What's wrong with analyse of this class? I wanna read-only bar property.