| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | public function load(ObjectManager $manager): void |
||
| 13 | { |
||
| 14 | $comedy = new Genre(); |
||
| 15 | $comedy |
||
| 16 | ->addTranslation(new GenreTranslations($comedy, 'en', 'Comedy')) |
||
| 17 | ->addTranslation(new GenreTranslations($comedy, 'uk', 'Комедія')) |
||
| 18 | ->addTranslation(new GenreTranslations($comedy, 'ru', 'Комедия')); |
||
| 19 | |||
| 20 | $manager->persist($comedy); |
||
| 21 | $manager->flush(); |
||
| 22 | } |
||
| 23 | } |