| Total Complexity | 0 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 9 | class Music extends DataObject implements TestOnly |
||
| 10 | { |
||
| 11 | use EagerLoaderMultiAccessor; |
||
| 12 | private static $table_name = 'TestMusic'; |
||
| 13 | private static $db = [ |
||
| 14 | 'Title' => 'Varchar' |
||
| 15 | ]; |
||
| 16 | |||
| 17 | private static $belongs_many_many = [ |
||
| 18 | 'Players' => Player::class, |
||
| 19 | ]; |
||
| 20 | |||
| 21 | private static $export_fields = [ |
||
|
|
|||
| 22 | 'ID' => 'ID', |
||
| 23 | 'Title' => 'Title', |
||
| 24 | ]; |
||
| 26 |