1--TEST--
2Property type not enforced for __get if the property is not visible
3--FILE--
4<?php
5
6class Test {
7    private int $prop;
8
9    public function __get($name) {
10        return "foobar";
11    }
12}
13
14$test = new Test;
15var_dump($test->prop);
16
17?>
18--EXPECT--
19string(6) "foobar"
20