<?php class A { public static function test(string $s, int $i, mixed $m) {} } class B extends A { public static function test($s, $i, $m) { var_dump($s, $i, $m); } } B::test('string', 1, NULL);
You have javascript disabled. You will not be able to edit any code.