Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kiss291323003 committed Sep 24, 2024
1 parent 5e166a9 commit bb0836a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/QueryBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,7 @@ public static function inc($num = 1)
if (!is_numeric($num)||$num<=0) {
throw new Exception('Argument supplied to inc must be a positive number');
}
return array("[I]" => "+" . $num);
return array("[I]" => " + " . $num);
}

/**
Expand All @@ -707,7 +707,7 @@ public static function dec($num = 1)
if (!is_numeric($num)||$num<=0) {
throw new Exception('Argument supplied to dec must be a positive number');
}
return array("[I]" => "-" . $num);
return array("[I]" => " - " . $num);
}

/**
Expand Down

0 comments on commit bb0836a

Please sign in to comment.