summaryrefslogtreecommitdiffstats
path: root/library/Icingadb/ProvidedHook/Reporting/TotalServiceSlaReport.php
blob: e5ebf57a791a161c09e3f77e05ac9d090eef21fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

/* Icinga DB Web | (c) 2023 Icinga GmbH | GPLv2 */

namespace Icinga\Module\Icingadb\ProvidedHook\Reporting;

use Icinga\Module\Icingadb\Hook\Common\TotalSlaReportUtils;

use function ipl\I18n\t;

class TotalServiceSlaReport extends ServiceSlaReport
{
    use TotalSlaReportUtils;

    public function getName()
    {
        return t('Total Service SLA');
    }
}