@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | Event::on( |
86 | 86 | Plugins::class, |
87 | 87 | Plugins::EVENT_AFTER_LOAD_PLUGINS, |
88 | - function () { |
|
88 | + function() { |
|
89 | 89 | $this->doIt(); |
90 | 90 | } |
91 | 91 | ); |
@@ -166,9 +166,9 @@ discard block |
||
166 | 166 | $sectionIds = Craft::$app->getSections()->getAllSectionIds(); |
167 | 167 | foreach ($sectionIds as $sectionId) { |
168 | 168 | $entryTypes = Craft::$app->getSections()->getEntryTypesBySectionId($sectionId); |
169 | - $data['entryTypeIds'][(string)$sectionId] = []; |
|
169 | + $data['entryTypeIds'][(string) $sectionId] = []; |
|
170 | 170 | foreach ($entryTypes as $entryType) { |
171 | - $data['entryTypeIds'][(string)$sectionId][] = $entryType->id; |
|
171 | + $data['entryTypeIds'][(string) $sectionId][] = $entryType->id; |
|
172 | 172 | } |
173 | 173 | } |
174 | 174 |