| Total Complexity | 4 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | class LegalBundleMetaData implements BundleMetaDataInterface |
||
| 21 | { |
||
| 22 | public function getDisplayName(): TranslatableMessage |
||
| 23 | { |
||
| 24 | return t('Legal docs'); |
||
| 25 | } |
||
| 26 | |||
| 27 | public function getDescription(): TranslatableMessage |
||
| 28 | { |
||
| 29 | return t('Site legal documents integration.'); |
||
| 30 | } |
||
| 31 | |||
| 32 | public function getIcon(): string |
||
| 33 | { |
||
| 34 | return 'fas fa-gavel'; |
||
| 35 | } |
||
| 36 | |||
| 37 | public function getCategorizableEntityClasses(): array |
||
| 40 | } |
||
| 41 | } |
||
| 42 |