<?php class Test { public function test() { echo 'instance test'; } // public static function test() { echo 'static test'; } } class Test2 extends Test { public function runTest() { parent::test(); } } (new Test2)->runTest();
You have javascript disabled. You will not be able to edit any code.