Passed
Push — master ( 7873a1...f2f167 )
by
unknown
18:56
created
typo3/sysext/backend/Classes/Controller/EditDocumentController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -523,7 +523,7 @@  discard block
 block discarded – undo
523 523
         // Processing related GET / POST vars
524 524
         $this->data = $parsedBody['data'] ?? [];
525 525
         $this->cmd = $parsedBody['cmd'] ?? [];
526
-        $this->mirror = $parsedBody['mirror']  ?? [];
526
+        $this->mirror = $parsedBody['mirror'] ?? [];
527 527
         $this->returnNewPageId = (bool)($parsedBody['returnNewPageId'] ?? false);
528 528
 
529 529
         // Only options related to $this->data submission are included here
@@ -2403,7 +2403,7 @@  discard block
 block discarded – undo
2403 2403
         $queryParams = $request->getQueryParams();
2404 2404
         $parsedBody = $request->getParsedBody();
2405 2405
 
2406
-        foreach (['edit', 'defVals', 'overrideVals' , 'columnsOnly' , 'noView'] as $key) {
2406
+        foreach (['edit', 'defVals', 'overrideVals', 'columnsOnly', 'noView'] as $key) {
2407 2407
             if (isset($this->R_URL_getvars[$key])) {
2408 2408
                 $this->storeArray[$key] = $this->R_URL_getvars[$key];
2409 2409
             } else {
Please login to merge, or discard this patch.