3v4l.org

run code in 300+ PHP versions simultaneously
<?php enum Department { case SPORTING; case HOME; case ELECTRONICS; case APPAREL; } class Product { public function __construct(public string $type, public Department $department) { } } $sporting = new Product('Ball', Department::SPORTING); var_dump($sporting);

preferences:
29.91 ms | 404 KiB | 5 Q