15 lines
312 B
PHP
15 lines
312 B
PHP
<?php
|
|
|
|
namespace Icinga\Module\Director\Objects;
|
|
|
|
class IcingaTemplateChoiceService extends IcingaTemplateChoice
|
|
{
|
|
protected $table = 'icinga_service_template_choice';
|
|
|
|
protected $objectTable = 'icinga_service';
|
|
|
|
protected $relations = array(
|
|
'required_template' => 'IcingaService',
|
|
);
|
|
}
|