Passed
Push — master ( 3fd334...04d844 )
by
unknown
14:33
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.
typo3/sysext/fluid/Classes/ServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,8 +34,8 @@
 block discarded – undo
34 34
     public function getFactories(): array
35 35
     {
36 36
         return [
37
-            Core\Rendering\RenderingContextFactory::class => [ static::class, 'getRenderingContextFactory' ],
38
-            Core\ViewHelper\ViewHelperResolver::class => [ static::class, 'getViewHelperResolver' ],
37
+            Core\Rendering\RenderingContextFactory::class => [static::class, 'getRenderingContextFactory'],
38
+            Core\ViewHelper\ViewHelperResolver::class => [static::class, 'getViewHelperResolver'],
39 39
         ];
40 40
     }
41 41
 
Please login to merge, or discard this patch.