1--TEST-- 2Abstract hooks in non-abstract class gives an error 3--FILE-- 4<?php 5 6class Test { 7 public abstract $prop { 8 get; 9 set {} 10 } 11} 12 13?> 14--EXPECTF-- 15Fatal error: Class Test contains 1 abstract method and must therefore be declared abstract or implement the remaining method (Test::$prop::get) in %s on line %d 16