Total Complexity | 4 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
12 | final 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) |
||
23 | { |
||
24 | $this->encoder = $encoder; |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * {@inheritdoc} |
||
29 | */ |
||
30 | public function preProcess(string $fixtureId, $object): void |
||
38 | } |
||
39 | |||
40 | /** |
||
41 | * {@inheritdoc} |
||
42 | */ |
||
43 | public function postProcess(string $fixtureId, $object): void |
||
48 |