summaryrefslogtreecommitdiffstats
path: root/library/Director/DirectorObject/Automation/BasketContent.php
blob: e59c0aebc5445cbdcec405b8baea5ae242160836 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php

namespace Icinga\Module\Director\DirectorObject\Automation;

use Icinga\Module\Director\Data\Db\DbObject;

class BasketContent extends DbObject
{
    protected $objects;

    protected $table = 'director_basket_content';

    protected $keyName = 'checksum';

    protected $defaultProperties = [
        'checksum' => null,
        'summary'  => null,
        'content'  => null,
    ];

    protected $binaryProperties = [
        'checksum'
    ];
}