Total Complexity | 1 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | class PostProductHandler implements PostPutProductHandlerInterface |
||
21 | { |
||
22 | use HandlerTrait; |
||
23 | |||
24 | private $mediator; |
||
25 | |||
26 | private $requestValidator; |
||
27 | |||
28 | private $verb; |
||
29 | |||
30 | /** |
||
31 | * PostProductHandler constructor. |
||
32 | * @param ProductPostMediator $mediator |
||
33 | * @param RequestValidatorInterface $requestValidator |
||
34 | * @param string $verb |
||
35 | */ |
||
36 | public function __construct( |
||
46 |