Skip to content

Commit

Permalink
[BUGFIX] Remove superfluous closing parenthesis in docs
Browse files Browse the repository at this point in the history
Releases: main, 12.4
Resolves: #101046
Change-Id: Ic5ec5d836107051a681c94452cee4719f64dd885
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/79332
Tested-by: core-ci <typo3@b13.com>
Reviewed-by: Christian Kuhn <lolli@schwarzbu.ch>
Tested-by: Christian Kuhn <lolli@schwarzbu.ch>
  • Loading branch information
haraldwitt authored and lolli42 committed Jun 14, 2023
1 parent 0db21e9 commit 26ebe0f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -61,7 +61,7 @@ Typical code:
$value = GeneralUtility::_GP('tx_scheduler');
// After
$value = $request->getParsedBody()['tx_scheduler']) ?? $request->getQueryParams()['tx_scheduler']) ?? null;
$value = $request->getParsedBody()['tx_scheduler'] ?? $request->getQueryParams()['tx_scheduler'] ?? null;
.. index:: PHP-API, FullyScanned, ext:core

0 comments on commit 26ebe0f

Please sign in to comment.