<?php abstract class Foo { abstract public static function bar(); } class Baz extends Foo { public static function bar() { var_dump('static method call'); } } Baz::bar();
You have javascript disabled. You will not be able to edit any code.