Completed
Push — master ( fbcd36...a8983c )
by Tim
02:32
created
Classes/Domain/Repository/IndexRepository.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -91,13 +91,13 @@  discard block
 block discarded – undo
91 91
         // $query->getQuerySettings()->setIgnoreEnableFields(true);
92 92
         $query->getQuerySettings()->setRespectSysLanguage(false);
93 93
         $query->getQuerySettings()->setLanguageOverlayMode(false);
94
-        $query->getQuerySettings()->setLanguageMode( "ignore");
94
+        $query->getQuerySettings()->setLanguageMode("ignore");
95 95
 
96 96
         // Notice Selection without any language handling
97 97
         unset($GLOBALS['TCA']['tx_calendarize_domain_model_index']['ctrl']['languageField']);
98 98
         unset($GLOBALS['TCA']['tx_calendarize_domain_model_index']['ctrl']['transOrigPointerField']);
99 99
 
100
-        $result =  $query->execute();
100
+        $result = $query->execute();
101 101
 
102 102
         return $result;
103 103
     }
@@ -378,7 +378,7 @@  discard block
 block discarded – undo
378 378
      */
379 379
     public function findWeek($year, $week, $weekStart = 1)
380 380
     {
381
-        $weekStart = (int) $weekStart;
381
+        $weekStart = (int)$weekStart;
382 382
         $daysShift = $weekStart - 1;
383 383
         $firstDay = DateTimeUtility::convertWeekYear2DayMonthYear($week, $year);
384 384
         $timezone = DateTimeUtility::getTimeZone();
@@ -499,7 +499,7 @@  discard block
 block discarded – undo
499 499
         $config = $objectManager->get(ConfigurationManagerInterface::class);
500 500
         $pluginConfig = $config->getConfiguration(ConfigurationManagerInterface::CONFIGURATION_TYPE_SETTINGS);
501 501
 
502
-        $mode = isset($pluginConfig['indexLanguageMode']) ? (string) $pluginConfig['indexLanguageMode'] : 'strict';
502
+        $mode = isset($pluginConfig['indexLanguageMode']) ? (string)$pluginConfig['indexLanguageMode'] : 'strict';
503 503
 
504 504
         return $mode;
505 505
     }
Please login to merge, or discard this patch.