Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
87 | public function getTagOptions(): array |
||
88 | { |
||
89 | return [ |
||
90 | 'manager_type' => $this->managerType, |
||
91 | 'group' => $this->group, |
||
92 | 'label' => $this->label, |
||
93 | 'show_in_dashboard' => $this->showInDashboard, |
||
94 | 'keep_open' => $this->keepOpen, |
||
95 | 'on_top' => $this->onTop, |
||
96 | 'icon' => $this->icon, |
||
97 | 'label_translator_strategy' => $this->labelTranslatorStrategy, |
||
98 | 'label_catalogue' => $this->labelCatalogue, |
||
99 | 'pager_type' => $this->pagerType, |
||
100 | ]; |
||
103 |