3v4l.org

run code in 300+ PHP versions simultaneously
<?php trait X{ function tryA(A $a){ $this->test($a); } abstract function test(A $a); } interface LOLI{ function test(B $b); } class LOL implements LOLI{ use X; function test(A $a){} } class A{} class B{} $x = new LOL; $x->tryA(new A); $x->tryB(new B);
Output for 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Fatal error: Declaration of LOL::test(A $a) must be compatible with LOLI::test(B $b) in /in/SQg0d on line 18
Process exited with code 255.
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.20, 7.2.0 - 7.2.33, 7.3.16 - 7.3.33
Fatal error: Declaration of LOL::test(A $a) must be compatible with LOLI::test(B $b) in /in/SQg0d on line 15
Process exited with code 255.
Output for 5.4.2 - 5.4.45, 5.5.24 - 5.5.35, 5.6.8 - 5.6.28
Fatal error: Declaration of LOL::test() must be compatible with LOLI::test(B $b) in /in/SQg0d on line 15
Process exited with code 255.

preferences:
182.42 ms | 402 KiB | 227 Q