<?php
interface Test {
public function test($param);
}
class MyTest implements Test {
public function test($param, $optional = false) {
echo $param;
}
}
class YourTest extends MyTest {
public function test($param) {
echo $param;
}
}
Fatal error: Declaration of YourTest::test($param) must be compatible with MyTest::test($param, $optional = false) in /in/7b7st on line 14
Process exited with code 255.
Output for 7.2.0 - 7.2.33, 7.3.16 - 7.3.33
Fatal error: Declaration of YourTest::test($param) must be compatible with MyTest::test($param, $optional = false) in /in/7b7st on line 13
Process exited with code 255.