"IMMEDIATE" public string $color; // "RED" public function __construct( #[Input] float $bodyTemperature, #[Input] int $heartRate, #[Input] Emergency $being ) { $this->priority = 'IMMEDIATE'; $this->color = 'RED'; } public function assignER(): string { ... } // この能力はここだけ } final readonly class ObservationCase { public function __construct( #[Input] float $bodyTemperature, #[Input] int $heartRate, #[Input] Observation $being ) {} public function assignWaitingArea(): string { ... } // この能力はここだけ } 23