mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-09-26 19:29:00 +02:00
23 lines
398 B
PHP
23 lines
398 B
PHP
<?php
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
namespace Icinga\Backend\Statusdat;
|
|
|
|
/**
|
|
* Class ServicegroupsummaryQuery
|
|
* @package Icinga\Backend\Statusdat
|
|
*/
|
|
class ServicegroupsummaryQuery extends GroupsummaryQuery
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $groupType = "servicegroup";
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $base = "services";
|
|
}
|