condition = $condition; $this->trueCase = $trueCase; $this->falseCase = $falseCase; } public function getCondition(): Condition { return $this->condition; } public function getTrueCase() { return $this->trueCase; } public function getFalseCase() { return $this->falseCase; } }