Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class UserFactory implements UserFactoryInterface |
||
11 | { |
||
12 | private UserPasswordEncoderInterface $passwordEncoder; |
||
13 | |||
14 | protected StringGeneratorInterface $stringGenerator; |
||
15 | |||
16 | public function __construct(UserPasswordEncoderInterface $passwordEncoder, StringGeneratorInterface $stringGenerator) |
||
20 | } |
||
21 | |||
22 | public function create(): UserInterface |
||
34 |