| Total Complexity | 3 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | final class QueuesPanel implements PanelInterface |
||
| 8 | { |
||
| 9 | public function getName(): string |
||
| 10 | { |
||
| 11 | return 'Queues'; |
||
| 12 | } |
||
| 13 | |||
| 14 | public function renderSummary(): string |
||
| 15 | { |
||
| 16 | return file_get_contents(dirname(__DIR__, 2) . '/resources/views/queues/summary.html'); |
||
| 17 | } |
||
| 18 | |||
| 19 | public function renderDetail(): string |
||
| 22 | } |
||
| 23 | } |
||
| 24 |