1--TEST--
2No get property hook parameters
3--FILE--
4<?php
5
6class Test {
7    public $prop {
8        get() {
9            var_dump($customName);
10        }
11    }
12}
13
14$test = new Test();
15$test->prop = 42;
16
17?>
18--EXPECTF--
19Fatal error: get hook of property Test::$prop must not have a parameter list in %s on line %d
20