condExprs = $condExprs; $this->expr = $expr; $this->matchKind = $matchKind; } public function getExpr() : \PhpParser\Node\Expr { return $this->expr; } /** * @return Expr[] */ public function getCondExprs() : array { return $this->condExprs; } public function getMatchKind() : \Rector\Php80\Enum\MatchKind { return $this->matchKind; } public function equalsMatchKind(\Rector\Php80\Enum\MatchKind $matchKind) : bool { return $this->matchKind->equals($matchKind); } }