Skip to content

Commit 77f431a

Browse files
committed
docs: Make the signature consistent with actual one
1 parent 9d69905 commit 77f431a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

user_guide_src/source/changelogs/v4.8.0.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Method Signature Changes
6060
- **Config:** ``CodeIgniter\Config\Services::request()`` no longer accepts any parameter.
6161
- **Database:** The following methods have had their signatures updated to remove deprecated parameters:
6262
- ``CodeIgniter\Database\Forge::_createTable()`` no longer accepts the deprecated ``$ifNotExists`` parameter. The method signature is now ``_createTable(string $table, array $attributes)``.
63-
- ``CodeIgniter\Database\BaseBuilder::increment()`` and ``decrement()`` as well as driver-specific builders now accept a string or array for the first parameter, allowing multiple columns to be incremented/decremented in a single call. The method signatures are now ``increment(string|array $column, int $value = 1)`` and ``decrement(string|array $column, int $value = 1)``.
63+
- ``CodeIgniter\Database\BaseBuilder::increment()`` and ``decrement()`` as well as driver-specific builders now accept a string or array for the first parameter, allowing multiple columns to be incremented/decremented in a single call. The method signatures are now ``increment(array|string $column, int $value = 1)`` and ``decrement(array|string $column, int $value = 1)``.
6464

6565
Property Scope Changes
6666
======================

0 commit comments

Comments
 (0)