summaryrefslogtreecommitdiffstats
path: root/library/Director/Objects/IcingaTemplateChoiceHost.php
blob: 10ddedd6a17026d79c94630a94f2149ee4132cff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

namespace Icinga\Module\Director\Objects;

class IcingaTemplateChoiceHost extends IcingaTemplateChoice
{
    protected $table = 'icinga_host_template_choice';

    protected $objectTable = 'icinga_host';

    protected $relations = array(
        'required_template' => 'IcingaHost',
    );
}