@ 2020-06-26T09:41:04Z <?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;
}
}
Enable javascript to submit You have javascript disabled. You will not be able to edit any code.
Output for 7.4.0 - 7.4.33 , 8.0.0 - 8.0.27 , 8.1.0 - 8.1.15 , 8.2.0 - 8.2.2 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 . preferences:dark mode live preview
64.13 ms | 407 KiB | 5 Q