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