<?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);
You have javascript disabled. You will not be able to edit any code.