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