| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 23 | 1 | public function map(Fluent $builder) |
|
| 24 | { |
||
| 25 | 1 | $builder->table('ext_translations'); |
|
| 26 | 1 | $builder->entity()->setRepositoryClass(TranslationRepository::class); |
|
| 27 | |||
| 28 | 1 | $builder->index(["locale", "object_class", "foreign_key"])->name('translations_lookup_idx'); |
|
| 29 | 1 | $builder->unique(["locale", "object_class", "field", "foreign_key"])->name('lookup_unique_idx'); |
|
| 30 | 1 | } |
|
| 31 | } |
||
| 32 |