<?phpnamespacePhpParser\Node\Expr;usePhpParser\Node\Expr;abstractclassBinaryOpextendsExpr{/** @var Expr The left hand side expression */public$left;/** @var Expr The right hand side expression */public$right;/** * Constructs a bitwise and node. * * @param Expr $left The left hand side expression * @param Expr $right The right hand side expression * @param array $attributes Additional attributes */publicfunction__construct(Expr$left,Expr$right,array$attributes=array()){parent::__construct($attributes);$this->left=$left;$this->right=$right;}publicfunctiongetSubNodeNames(){returnarray('left','right');}}