Completed
Push — master ( 5ff62b...faff63 )
by Tim
19:37 queued 04:42
created
Classes/Domain/Repository/QuestionRepository.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 /**
5 5
  * Build up the Question.
6 6
  */
@@ -37,8 +37,8 @@  discard block
 block discarded – undo
37 37
     {
38 38
         parent::__construct($objectManager);
39 39
 
40
-        $configuration = (array) @\unserialize((string) $GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf']['faq']);
41
-        $enableManuallySorting = isset($configuration['enableManuallySorting']) ? (bool) $configuration['enableManuallySorting'] : false;
40
+        $configuration = (array)@\unserialize((string)$GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf']['faq']);
41
+        $enableManuallySorting = isset($configuration['enableManuallySorting']) ? (bool)$configuration['enableManuallySorting'] : false;
42 42
 
43 43
         if ($enableManuallySorting) {
44 44
             $this->defaultOrderings = [
Please login to merge, or discard this patch.