Merge pull request #4116 from dokuwiki/bot/autofix

🤖 Automatic code style fixes
This commit is contained in:
Andreas Gohr 2023-11-29 16:11:36 +01:00 committed by GitHub
commit 133e2f6d07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ class JsonRpcServer
try {
$body = file_get_contents('php://input');
if($body !== '') {
if ($body !== '') {
$data = json_decode($body, true, 512, JSON_THROW_ON_ERROR);
} else {
$data = [];