Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions user_guide_src/source/changelogs/next.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Release Date: Not released
Enhancements:

- query builder testability simplified with new property, but dropped
method parameters (breaking change)
method parameters (breaking change)
- database, migrations and sessions beefed up
- numerous smaller bugs corrected

Expand Down Expand Up @@ -37,10 +37,10 @@ The list of changed files follows, with PR numbers shown.
- Database/
- MySQLi/Connection #2201, 2229
- Postgre/
- BaseBuilder #2269
- BaseBuilder #2269
- Connection #2201
- SQLite3/Connection #2201, 2228, 2230
- BaseBuilder #2257, 2232, 2269
- BaseBuilder #2257, 2232, 2269, 2270
- BaseConnection #2208, 2213, 2231
- Config #2224
- Forge #2205
Expand Down Expand Up @@ -164,9 +164,10 @@ The list of changed files follows, with PR numbers shown.


PRs merged:
----------
--------------------------

- #2271 fix ResourcePresenter::setModel()
- #2270 groupStart() refactorization
- #2269 testMode() method for BaseBuilder
- #2268 Validation session use only if exists
- #2267 Tests setUp and tearDown: void
Expand Down
8 changes: 4 additions & 4 deletions user_guide_src/source/database/query_builder.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1333,10 +1333,10 @@ Class Reference

.. php:method:: from($from[, $overwrite = FALSE])

:param mixed $from: Table name(s); string or array
:param bool $overwrite Should we remove the first table existing?
:returns: BaseBuilder instance (method chaining)
:rtype: BaseBuilder
:param mixed $from: Table name(s); string or array
:param bool $overwrite: Should we remove the first table existing?
:returns: BaseBuilder instance (method chaining)
:rtype: BaseBuilder

Specifies the FROM clause of a query.

Expand Down