| Total Complexity | 1 | 
| Total Lines | 17 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 12 | class HierarchyOnSubclassTestObject extends DataObject implements TestOnly  | 
            ||
| 13 | { | 
            ||
| 14 | private static $table_name = 'HierarchyOnSubclassTest_Object';  | 
            ||
| 
                                                                                                    
                        
                         | 
                |||
| 15 | |||
| 16 | private static $db = [  | 
            ||
| 17 | 'Title' => 'Varchar'  | 
            ||
| 18 | ];  | 
            ||
| 19 | |||
| 20 | private static $extensions = [  | 
            ||
| 21 | Versioned::class,  | 
            ||
| 22 | ];  | 
            ||
| 23 | |||
| 24 | private static $default_sort = 'Title ASC';  | 
            ||
| 25 | |||
| 26 | public function cmstreeclasses()  | 
            ||
| 31 |