public function bitXor($value) { return $this->bit('xor', $value); }
/** * Apply a bitwise xor operation on the current field. * * @see Expr::bitXor() * @see http://docs.mongodb.org/manual/reference/operator/update/bit/ * @param int $value * @return self */ public function bitXor($value) { $this->expr->bitXor($value); return $this; }