<?php final class A { private int $value; public function __construct(int $value) { $this->value = $value; } public function getValue(): int { return $this->value; } } $a = new A(100); echo $a->getValue() . PHP_EOL; $a->__construct(200); echo $a->getValue() . PHP_EOL;
You have javascript disabled. You will not be able to edit any code.
Value for `_results` contains invalid data `array`