Total Complexity | 0 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class CSPDocument extends DataObject |
||
9 | { |
||
10 | private static $table_name = 'Signify_Document'; |
||
|
|||
11 | |||
12 | private static $db = [ |
||
13 | 'URI' => 'Varchar(255)', |
||
14 | ]; |
||
15 | |||
16 | private static $has_one = [ |
||
17 | 'SiteTree' => SiteTree::class, |
||
18 | ]; |
||
19 | |||
20 | private static $belongs_many_many = [ |
||
21 | 'CSPViolations' => CSPViolation::class, |
||
22 | ]; |
||
24 |