Passed
Push — master ( 0e53b4...0de5ac )
by
unknown
14:44
created
typo3/sysext/scheduler/Classes/Controller/SchedulerModuleController.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -177,9 +177,9 @@
 block discarded – undo
177 177
             GeneralUtility::getFileAbsFileName('EXT:scheduler/Resources/Private/Templates/Backend/SchedulerModule/Index.html')
178 178
         );
179 179
         $this->view->assignMultiple([
180
-           'headline' =>  $this->getLanguageService()->getLL('function.' . $this->MOD_SETTINGS['function']),
181
-           'sectionTitle' => $this->getSectionTitle(),
182
-           'content' => $content,
180
+            'headline' =>  $this->getLanguageService()->getLL('function.' . $this->MOD_SETTINGS['function']),
181
+            'sectionTitle' => $this->getSectionTitle(),
182
+            'content' => $content,
183 183
         ]);
184 184
 
185 185
         $this->getButtons($request);
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -286,7 +286,7 @@
 block discarded – undo
286 286
                         try {
287 287
                             // Try adding or editing
288 288
                             $content .= $this->editTaskAction($requestUri);
289
-                        } catch (\LogicException|\UnexpectedValueException|\OutOfBoundsException $e) {
289
+                        } catch (\LogicException | \UnexpectedValueException | \OutOfBoundsException $e) {
290 290
                             // Catching all types of exceptions that were previously handled and
291 291
                             // converted to messages
292 292
                             $content .= $this->listTasksAction();
Please login to merge, or discard this patch.