3v4l.org

run code in 300+ PHP versions simultaneously
<?php declare(strict_types = 1); phpversion() >= "7.0.0" or die(); class Nul { } class FooBar extends Nul { public $prop = '123'; } class BarFoo extends Nul { public $prop = '312'; } function test() : FooBar { return new FooBar; } function test1() : BarFoo { return new Nul; } var_dump(test1()); var_dump(test());
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.33, 7.2.0 - 7.2.25, 7.3.0 - 7.3.12, 7.4.0
Fatal error: Uncaught TypeError: Return value of test1() must be an instance of BarFoo, instance of Nul returned in /in/U6hEr:25 Stack trace: #0 /in/U6hEr(28): test1() #1 {main} thrown in /in/U6hEr on line 25
Process exited with code 255.
Output for 5.5.24 - 5.5.35, 5.6.8 - 5.6.28
Warning: Unsupported declare 'strict_types' in /in/U6hEr on line 1 Parse error: syntax error, unexpected ':', expecting '{' in /in/U6hEr on line 18
Process exited with code 255.

preferences:
105.22 ms | 401 KiB | 77 Q