Total Complexity | 2 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
25 | class AbstractAction |
||
26 | { |
||
27 | /** |
||
28 | * @var DecoderInterface|SerializerInterface |
||
29 | */ |
||
30 | protected SerializerInterface $serializer; |
||
31 | protected SerializeFormatResolver $requestFormatResolver; |
||
32 | protected ResponseFactory $responseFactory; |
||
33 | |||
34 | public function __construct(SerializerInterface $serializer, SerializeFormatResolver $requestFormatResolver, ResponseFactory $responseFactory) |
||
44 |