<?php abstract class Test { abstract public static function abstractMethod(); } class Child extends Test { public static function abstractMethod() { return 'testString'; } } echo Child::abstractMethod();
You have javascript disabled. You will not be able to edit any code.