Constructs a binary operator node.
Expr $left The left hand side expression:
Expr $right The right hand side expression:
array<string, mixed> $attributes Additional attributes:
public function __construct(Expr $left, Expr $right, array $attributes = []) { $this->attributes = $attributes; $this->left = $left; $this->right = $right; }