Completed
Push — master ( edfd6f...a9aacd )
by Tim
05:24
created
Classes/Hooks/KeSearchIndexer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -87,11 +87,11 @@
 block discarded – undo
87 87
                 $originalObject->getKeSearchTags($index),
88 88
                 "&tx_calendarize_calendar[index]={$index->getUid()}",
89 89
                 $abstract,
90
-                $index->_getProperty('_languageUid'),   // $index always has a "_languageUid" - if the $originalObject does not use translations, it is 0
90
+                $index->_getProperty('_languageUid'), // $index always has a "_languageUid" - if the $originalObject does not use translations, it is 0
91 91
                 $index->_hasProperty('starttime') ? $index->_getProperty('starttime') : 0,
92 92
                 $index->_hasProperty('endtime') ? $index->_getProperty('endtime') : 0,
93 93
                 $index->_hasProperty('fe_group') ? $index->_getProperty('fe_group') : '',
94
-                false,  // debugOnly
94
+                false, // debugOnly
95 95
                 $additionalFields
96 96
             );
97 97
         }
Please login to merge, or discard this patch.
Classes/Hooks/CmsLayout.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
 
69 69
         $actions = $this->flexFormService->get('switchableControllerActions', 'main');
70 70
         $parts = GeneralUtility::trimExplode(';', $actions, true);
71
-        $parts = array_map(function ($element) {
71
+        $parts = array_map(function($element) {
72 72
             $split = explode('->', $element);
73 73
             return ucfirst($split[1]);
74 74
         }, $parts);
Please login to merge, or discard this patch.
Classes/Domain/Model/Event.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -386,7 +386,7 @@
 block discarded – undo
386 386
     public function getKeSearchTags(Index $index)
387 387
     {
388 388
         static $keSearchTags = [];
389
-        if(empty($keSearchTags)) {
389
+        if (empty($keSearchTags)) {
390 390
             foreach ($this->getCategories() as $category) {
391 391
                 $keSearchTags[] = "#syscat{$category->getUid()}#";
392 392
             }
Please login to merge, or discard this patch.