3v4l.org

run code in 500+ PHP versions simultaneously
<?php interface RequestInterface{} class Request implements RequestInterface {} interface Promise{} class PromiseImpl implements Promise {} interface Plugin { public function handleRequest(RequestInterface $request, callable $next, callable $first): Promise; } abstract class ForwardCompatibilityPlugin implements Plugin { abstract function doHandleRequest(RequestInterface $request, callable $next, callable $first); public function handleRequest(RequestInterface $request, callable $next, callable $first): Promise { return $this->doHandleRequest($request, $next, $first); } } class MyPlugin extends ForwardCompatibilityPlugin { /** * {@inheritdoc} */ public function doHandleRequest(RequestInterface $request, callable $next, callable $first) { echo "foobar\n"; return $next($request); } } $request = new Request(); $callable = function() { echo "callable\n"; return new PromiseImpl(); }; $plugin = new MyPlugin(); $plugin->handleRequest($request, $callable, $callable);
Output for 7.0.33, 7.1.25, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.34, 8.2.0 - 8.2.30, 8.3.0 - 8.3.30, 8.4.1 - 8.4.18, 8.5.0 - 8.5.3
foobar callable
Output for 5.6.38
Parse error: syntax error, unexpected ':', expecting ';' or '{' in /in/2kgtG on line 11
Process exited with code 255.

preferences:
77.66 ms | 1370 KiB | 4 Q