File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1280,18 +1280,18 @@ public function now ($diff = null, $func = "NOW()") {
12801280
12811281 /**
12821282 * Method generates incremental function call
1283- * @param int increment amount . 1 by default
1283+ * @param int increment by int or float . 1 by default
12841284 */
12851285 public function inc ($ num = 1 ) {
1286- return Array ("[I] " => "+ " . ( int ) $ num );
1286+ return Array ("[I] " => "+ " . $ num );
12871287 }
12881288
12891289 /**
12901290 * Method generates decrimental function call
1291- * @param int increment amount . 1 by default
1291+ * @param int increment by int or float . 1 by default
12921292 */
12931293 public function dec ($ num = 1 ) {
1294- return Array ("[I] " => "- " . ( int ) $ num );
1294+ return Array ("[I] " => "- " . $ num );
12951295 }
12961296
12971297 /**
You can’t perform that action at this time.
0 commit comments