| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class UserFixtures extends Fixture |
||
| 11 | { |
||
| 12 | /** @var UserPasswordEncoderInterface */ |
||
| 13 | private $userPasswordEncoder; |
||
| 14 | |||
| 15 | public function __construct(UserPasswordEncoderInterface $userPasswordEncoder) |
||
| 16 | { |
||
| 17 | $this->userPasswordEncoder = $userPasswordEncoder; |
||
| 18 | } |
||
| 19 | |||
| 20 | public function load(ObjectManager $manager): void |
||
| 28 | } |
||
| 29 | } |
||
| 30 |