| Total Complexity | 5 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class UserProcessor implements ProcessorInterface |
||
| 10 | { |
||
| 11 | protected $encoder; |
||
| 12 | |||
| 13 | public function __construct(UserPasswordEncoderInterface $encoder) |
||
| 14 | { |
||
| 15 | $this->encoder = $encoder; |
||
| 16 | } |
||
| 17 | |||
| 18 | public function preProcess(string $id, $object): void |
||
| 27 | } |
||
| 28 | } |
||
| 29 | |||
| 30 | public function postProcess(string $id, $object): void |
||
| 34 |