summaryrefslogtreecommitdiffstats
path: root/library/Icingadb/Widget/ItemList/NotificationListItem.php
blob: 683762f9b6e51bb04370eafcb12b3166c9004974 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

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

namespace Icinga\Module\Icingadb\Widget\ItemList;

use Icinga\Module\Icingadb\Common\ListItemCommonLayout;
use ipl\Web\Widget\StateBall;

class NotificationListItem extends BaseNotificationListItem
{
    use ListItemCommonLayout;

    protected function getStateBallSize(): string
    {
        return StateBall::SIZE_LARGE;
    }
}