Logical and binary operators
Type: array
protected $logicalBinaryOperators = array( "??" => 0, "||" => 0, "&&" => 1, "|" => 2, "^" => 3, "&" => 4, "===" => 5, "!==" => 5, "==" => 5, "!=" => 5, "<=" => 6, ">=" => 6, "<" => 6, ">" => 6, "instanceof" => 6, "in" => 6, ">>>" => 7, "<<" => 7, ">>" => 7, "+" => 8, "-" => 8, "*" => 9, "/" => 9, "%" => 9, "**" => 10, );