Asymmetric Property
An asymmetric property is a property that specifies the asymmetric visibility. This means that the property has a different visibility for read and for write. By default, visibility is symmetric: identical to write and read.
<?php
class Elephpant {
public private(set) int $property;
}
?>