<?php // defined before the parent class : no error class y extends x {} abstract class x { abstract function foo(); } // defined after the parent class : error class y2 extends x {} ?>
You have javascript disabled. You will not be able to edit any code.