Completed
Push — master ( 2d2314...23fbbc )
by Tim
02:52
created
Classes/Domain/Repository/IndexRepository.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -364,7 +364,7 @@  discard block
 block discarded – undo
364 364
      */
365 365
     public function findWeek($year, $week, $weekStart = 1)
366 366
     {
367
-        $weekStart = (int) $weekStart;
367
+        $weekStart = (int)$weekStart;
368 368
         $daysShift = $weekStart - 1;
369 369
         $firstDay = DateTimeUtility::convertWeekYear2DayMonthYear($week, $year);
370 370
         $timezone = DateTimeUtility::getTimeZone();
@@ -484,7 +484,7 @@  discard block
 block discarded – undo
484 484
         $config = $objectManager->get(ConfigurationManagerInterface::class);
485 485
         $pluginConfig = $config->getConfiguration(ConfigurationManagerInterface::CONFIGURATION_TYPE_SETTINGS);
486 486
 
487
-        $mode = isset($pluginConfig['indexLanguageMode']) ? (string) $pluginConfig['indexLanguageMode'] : 'strict';
487
+        $mode = isset($pluginConfig['indexLanguageMode']) ? (string)$pluginConfig['indexLanguageMode'] : 'strict';
488 488
 
489 489
         return $mode;
490 490
     }
Please login to merge, or discard this patch.