| Total Complexity | 0 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 7 | class TeamSupporter extends DataObject |
||
| 8 | { |
||
| 9 | private static $table_name = 'TeamSupporter'; |
||
| 10 | |||
| 11 | private static $db = [ |
||
| 12 | 'Ranking' => 'Int', |
||
| 13 | ]; |
||
| 14 | |||
| 15 | private static $has_one = [ |
||
| 16 | 'Team' => Team::class, |
||
| 17 | 'Supporter' => Supporter::class, |
||
| 18 | ]; |
||
| 19 | |||
| 20 | private static $default_sort = '"TeamSupporter"."Ranking" ASC'; |
||
|
|
|||
| 21 | } |
||
| 22 |