What does this program print?

from Object-oriented programming
PHP 8.3.33 beginner 2 min

What does this program print?

php
final class Counter
{
    public function __construct(public int $value) {}
}

$first = new Counter(1);
$alias = $first;
$copy = clone $first;
$alias->value++;
$copy->value++;

echo "{$first->value},{$copy->value}\n";
Open in playground
Report an error