On Fri, Jul 16, 2021 at 9:45 AM Eugene Sidelnyk <[email protected]> wrote:
> Readonly properties are really useful for DDD, where everything is going to
> be immutable. It promotes best practices. However for people to use it,
> syntax should be concise and brief.
If every property of the class is readonly it would probably be better
to declare that with a class modifier.
E.g.
```php
readonly class Entity {
public int $count;
public string $data;
}
```
Though `readonly` doesn't look like a perfect fit in that position to me.
--
Best regards,
Bruce Weirdan mailto:[email protected]
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: https://www.php.net/unsub.php