Completed
Push — master ( b7833b...bef2f6 )
by Tim
01:59
created
Classes/Controller/CalendarController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -25,8 +25,6 @@
 block discarded – undo
25 25
 use TYPO3\CMS\Extbase\Persistence\QueryInterface;
26 26
 use TYPO3\CMS\Extbase\Property\TypeConverter\DateTimeConverter;
27 27
 use TYPO3\CMS\Extbase\SignalSlot\Dispatcher;
28
-use TYPO3\CMS\Frontend\Controller\ErrorController;
29
-use TYPO3\CMS\Frontend\Page\PageAccessFailureReasons;
30 28
 
31 29
 /**
32 30
  * Calendar.
Please login to merge, or discard this patch.
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.