first = $first; $this->second = $second; } public function interpret(Context $context): bool { return $this->first->interpret($context) || $this->second->interpret($context); } }