| Total Complexity | 0 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | class SolrIndexVersionedTest_Object extends DataObject implements TestOnly |
||
| 13 | { |
||
| 14 | |||
| 15 | private static $table_name = 'SolrIndexVersionedTest_Object'; |
||
|
|
|||
| 16 | |||
| 17 | private static $extensions = [ |
||
| 18 | Versioned::class |
||
| 19 | ]; |
||
| 20 | |||
| 21 | private static $db = [ |
||
| 22 | 'Title' => 'Varchar', |
||
| 23 | 'Content' => 'Text', |
||
| 24 | 'TestText' => 'Varchar', |
||
| 25 | ]; |
||
| 27 |