Completed
Push — master ( 36bbbe...f30a93 )
by Tim
02:07
created
Classes/ViewHelpers/LanguageInformationViewHelper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
      */
41 41
     public function render()
42 42
     {
43
-        $langUid = (int) $this->arguments['languageUid'];
43
+        $langUid = (int)$this->arguments['languageUid'];
44 44
         if (\array_key_exists($langUid, self::$flags)) {
45 45
             return self::$flags[$langUid];
46 46
         }
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
         }
59 59
         $out .= $title;
60 60
 
61
-        self::$flags[$this->arguments['languageUid']] = (string) $out;
61
+        self::$flags[$this->arguments['languageUid']] = (string)$out;
62 62
 
63 63
         return $out;
64 64
     }
Please login to merge, or discard this patch.
Classes/Domain/Model/Index.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
             if (empty($configuration)) {
115 115
                 throw new Exception('No valid configuration for the current index: ' . $this->getUniqueRegisterKey(), 123678123);
116 116
             }
117
-            $this->originalObject = EventUtility::getOriginalRecordByConfiguration($configuration, (int) $this->getForeignUid());
117
+            $this->originalObject = EventUtility::getOriginalRecordByConfiguration($configuration, (int)$this->getForeignUid());
118 118
         }
119 119
 
120 120
         return $this->originalObject;
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
      */
248 248
     public function isAllDay()
249 249
     {
250
-        return (bool) $this->allDay;
250
+        return (bool)$this->allDay;
251 251
     }
252 252
 
253 253
     /**
@@ -357,6 +357,6 @@  discard block
 block discarded – undo
357 357
      */
358 358
     public function getSysLanguageUid()
359 359
     {
360
-        return (int) $this->_languageUid;
360
+        return (int)$this->_languageUid;
361 361
     }
362 362
 }
Please login to merge, or discard this patch.