Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
21 | public function load(ObjectManager $manager): void |
||
22 | { |
||
23 | $actorTmdb = new ActorTMDB(self::ACTOR_TMDB_ID); |
||
24 | $actor = new Actor(self::ACTOR_ORIGINAL_NAME, $actorTmdb); |
||
25 | $actor->addTranslation(new ActorTranslations($actor, 'en', self::ACTOR_ORIGINAL_NAME)); |
||
26 | $actor->addTranslation(new ActorTranslations($actor, 'pl', 'Name')); |
||
27 | |||
28 | $manager->persist($actor); |
||
29 | $manager->flush(); |
||
30 | } |
||
31 | } |
||
32 |