Completed
Push — master ( b7833b...bef2f6 )
by Tim
01:59
created
Classes/Controller/AbstractController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
         $this->settings = $this->configurationManager->getConfiguration(ConfigurationManagerInterface::CONFIGURATION_TYPE_SETTINGS);
68 68
 
69 69
         $pluginConfigurationService = GeneralUtility::makeInstance(PluginConfigurationService::class);
70
-        $this->settings = $pluginConfigurationService->respectPluginConfiguration((array) $this->settings);
70
+        $this->settings = $pluginConfigurationService->respectPluginConfiguration((array)$this->settings);
71 71
     }
72 72
 
73 73
     /**
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
      */
114 114
     protected function sendHeaderAndFilename($contentType, $fileExtension)
115 115
     {
116
-        $testMode = (bool) $this->settings['feed']['debugMode'];
116
+        $testMode = (bool)$this->settings['feed']['debugMode'];
117 117
         if ($testMode) {
118 118
             header('Content-Type: text/plain; charset=utf-8');
119 119
         } else {
Please login to merge, or discard this patch.