3v4l.org

run code in 300+ PHP versions simultaneously
<?php declare(strict_types=1); class Catalogue { private int $id; private string $name; private int $type; private string $description; private Cost $cost; private bool $visible; public function __construct( int $id, string $name, int $type, string $description, Cost $cost, bool $visible ) { $this->id = $id; $this->name = $name; $this->type = $type; $this->description = $description; $this->cost = $cost; $this->visible = $visible; } }
Output for 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.29, 8.2.0 - 8.2.21, 8.3.0 - 8.3.9
Output for 7.2.0 - 7.2.34, 7.3.0 - 7.3.33
Parse error: syntax error, unexpected 'int' (T_STRING), expecting function (T_FUNCTION) or const (T_CONST) in /in/37e6N on line 7
Process exited with code 255.
Output for 5.6.40
Warning: Unsupported declare 'strict_types' in /in/37e6N on line 3 Parse error: syntax error, unexpected 'int' (T_STRING), expecting variable (T_VARIABLE) in /in/37e6N on line 7
Process exited with code 255.

preferences:
134.23 ms | 403 KiB | 191 Q