| Total Complexity | 1 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class ObjectWithFields extends DataObject implements TestOnly |
||
| 11 | { |
||
| 12 | private static $db = [ |
||
|
|
|||
| 13 | 'Title' => 'Varchar', |
||
| 14 | 'Age' => 'Int', |
||
| 15 | ]; |
||
| 16 | |||
| 17 | private static $table_name = 'Test_ObjectWithFields'; |
||
| 18 | |||
| 19 | private static $extensions = [ |
||
| 20 | Versioned::class, |
||
| 21 | ]; |
||
| 22 | |||
| 23 | public function getCMSFields() |
||
| 32 |