3v4l.org

run code in 300+ PHP versions simultaneously
<?php interface HasMethodReturnIntOrString { public function methodA(): int|string; } interface HasMethodReturnIntOrFloat { public function methodA(): int|float; } // Fatal error: Declaration of HasMethodReturnIntOrString::methodA(): string|int must be compatible with HasMethodReturnIntOrFloat::methodA(): int|float in /in/IUQBd on line 5 interface HasMethodReturnInt extends HasMethodReturnIntOrString, HasMethodReturnIntOrFloat { }
Output for 8.0.1 - 8.0.30, 8.1.0 - 8.1.31, 8.2.0 - 8.2.26, 8.3.0 - 8.3.15, 8.4.1 - 8.4.2
Fatal error: Declaration of HasMethodReturnIntOrString::methodA(): string|int must be compatible with HasMethodReturnIntOrFloat::methodA(): int|float in /in/ODQds on line 5
Process exited with code 255.
Output for 7.4.0 - 7.4.33
Parse error: syntax error, unexpected '|', expecting ';' or '{' in /in/ODQds on line 5
Process exited with code 255.

preferences:
77.83 ms | 407 KiB | 5 Q