Total Complexity | 4 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class UserProcessor implements ProcessorInterface |
||
13 | { |
||
14 | /** |
||
15 | * @var UserPasswordEncoderInterface |
||
16 | */ |
||
17 | private $encoder; |
||
18 | |||
19 | /** |
||
20 | * @param UserPasswordEncoderInterface $encoder |
||
21 | */ |
||
22 | public function __construct(UserPasswordEncoderInterface $encoder) |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * @inheritdoc |
||
29 | */ |
||
30 | public function preProcess(string $fixtureId, $object): void |
||
37 | } |
||
38 | |||
39 | /** |
||
40 | * @inheritdoc |
||
41 | */ |
||
42 | public function postProcess(string $fixtureId, $object): void |
||
46 |