Total Complexity | 4 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | class ThemeBundleMetaData implements BundleMetaDataInterface |
||
21 | { |
||
22 | public function getDisplayName(): TranslatableMessage |
||
23 | { |
||
24 | return t('Theme management'); |
||
25 | } |
||
26 | |||
27 | public function getDescription(): TranslatableMessage |
||
28 | { |
||
29 | return t('Dashboard integration and extension.'); |
||
30 | } |
||
31 | |||
32 | public function getIcon(): string |
||
35 | } |
||
36 | |||
37 | public function getCategorizableEntityClasses(): array |
||
40 | } |
||
41 | } |
||
42 |