Skip to content
Snippets Groups Projects
Commit 1db0716c authored by Lina Wolf's avatar Lina Wolf Committed by Oliver Bartsch
Browse files

[DOCS] Correct code example in Changelog

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: default avatarcore-ci <typo3@b13.com>
Tested-by: default avatarStefan Bürk <stefan@buerk.tech>
Tested-by: default avatarOliver Bartsch <bo@cedev.de>
Reviewed-by: default avatarStefan Bürk <stefan@buerk.tech>
Reviewed-by: default avatarOliver Bartsch <bo@cedev.de>
parent eb381373
No related merge requests found
......@@ -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% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment