From 2545830d2ecbb406f44a21a1d9e6202ce8cb7d76 Mon Sep 17 00:00:00 2001 From: ADmad Date: Fri, 18 Apr 2025 11:54:48 +0530 Subject: [PATCH] Update 6-0-migration-guide.rst Refs cakephp/cakephp#18347 --- en/appendices/6-0-migration-guide.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/en/appendices/6-0-migration-guide.rst b/en/appendices/6-0-migration-guide.rst index 1c3c7c89c3..6f94df25f1 100644 --- a/en/appendices/6-0-migration-guide.rst +++ b/en/appendices/6-0-migration-guide.rst @@ -27,6 +27,12 @@ Datasource - ``Datasource/Paging/PaginatedInterface`` now extends ``IteratorAggregate`` instead of ``Traversable``. +Http +---- + +- Using `$request->getParam('?')` to get the query params is no longer possible. + Use `$request->getQueryParams()` instead. + ORM ---