3v4l.org

run code in 300+ PHP versions simultaneously
<?php interface CommandInterface {} abstract class AbstractCommand implements CommandInterface {} interface PrefixableCommandInterface {} abstract class PrefixableCommand extends AbstractCommand implements PrefixableCommandInterface { } class StringSet extends PrefixableCommand {} interface ConnectionInterface {} class Connection implements ConnectionInterface { public function executeCommand(CommandInterface $command) { echo 'foo connection'; } } class Tester { private $connection; public __construct() { $this->connection = new Connection(); } public function executeCommand(CommandInterface $command) { $this->connection->executeCommand($command); } } $t = new Tester(); $t->executeCommand(new StringSet);
Output for 5.4.0 - 5.4.20
Parse error: syntax error, unexpected '__construct' (T_STRING), expecting variable (T_VARIABLE) in /in/mg7p8 on line 29
Process exited with code 255.
Output for 5.3.0 - 5.3.27
Parse error: syntax error, unexpected T_STRING, expecting T_VARIABLE in /in/mg7p8 on line 29
Process exited with code 255.

preferences:
185.58 ms | 1395 KiB | 56 Q