| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | class SurveyLanguage extends ManyToManyModel implements Sortable |
||
| 16 | { |
||
| 17 | public static $parentClass = BaseSurvey::class; |
||
| 18 | public static $childClass = Language::class; |
||
| 19 | |||
| 20 | |||
| 21 | /** |
||
| 22 | * {@inheritdoc} |
||
| 23 | */ |
||
| 24 | public static function tableName() |
||
| 25 | { |
||
| 26 | return "{{survey_language}}"; |
||
| 27 | } |
||
| 28 | |||
| 29 | /** |
||
| 30 | * {@inheritdoc} |
||
| 31 | */ |
||
| 32 | public static function primaryKey() |
||
| 35 | } |
||
| 36 | |||
| 38 | } |