Total Complexity | 2 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class UserFixtures extends Fixture |
||
13 | { |
||
14 | protected $encoder; |
||
15 | protected $em; |
||
16 | |||
17 | public function __construct(UserPasswordEncoderInterface $encoder, EntityManagerInterface $entityManager) |
||
18 | { |
||
19 | $this->em = $entityManager; |
||
20 | $this->encoder = $encoder; |
||
21 | } |
||
22 | |||
23 | public function load(ObjectManager $manager) |
||
49 | } |
||
50 | } |
||
51 |