IcingaCommandField: one more implementation

This commit is contained in:
Thomas Gelf 2016-12-07 09:38:33 +01:00
parent 3e92746112
commit 949d6c9b54

View File

@ -2,9 +2,7 @@
namespace Icinga\Module\Director\Objects;
use Icinga\Module\Director\Data\Db\DbObject;
class IcingaCommandField extends DbObject
class IcingaCommandField extends IcingaObjectField
{
protected $keyName = array('command_id', 'datafield_id');
@ -13,6 +11,7 @@ class IcingaCommandField extends DbObject
protected $defaultProperties = array(
'command_id' => null,
'datafield_id' => null,
'is_required' => null
'is_required' => null,
'var_filter' => null,
);
}