Skip to content

Commit

Permalink
[DOCS] Correct code example in Changelog
Browse files Browse the repository at this point in the history
Remove excess bracket

Releases: main, 12.4
Resolves: #103635
Change-Id: Ie9ea1f03457177eeb6be7abb788c05bd2bf64e8c
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/83832
Tested-by: core-ci <typo3@b13.com>
Tested-by: Stefan Bürk <stefan@buerk.tech>
Tested-by: Oliver Bartsch <bo@cedev.de>
Reviewed-by: Stefan Bürk <stefan@buerk.tech>
Reviewed-by: Oliver Bartsch <bo@cedev.de>
  • Loading branch information
Lina Wolf authored and o-ba committed Apr 16, 2024
1 parent 77c1f5d commit 3ce932d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ Typical code:
$value = GeneralUtility::_GET('tx_scheduler');
// After
$value = $request->getQueryParams()['tx_scheduler']) ?? null;
$value = $request->getQueryParams()['tx_scheduler'] ?? null;
.. index:: PHP-API, FullyScanned, ext:core

0 comments on commit 3ce932d

Please sign in to comment.