<?php
class Foo {
    public readonly int $bar;

    public function __construct() {
        $this->bar = 1;
        $this->bar++;
    }
}

new Foo();
?>