| Total Complexity | 0 |
| Total Lines | 10 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class SiteTreeBacklinksTestContentObject extends DataObject implements TestOnly |
||
| 9 | { |
||
| 10 | private static $table_name = 'BacklinkContent'; |
||
|
|
|||
| 11 | |||
| 12 | private static $db = array( |
||
| 13 | 'Title' => 'Text', |
||
| 14 | 'Content' => 'HTMLText', |
||
| 15 | ); |
||
| 16 | |||
| 17 | private static $singular_name = 'Backlink test content object'; |
||
| 18 | } |
||
| 19 |