Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
17 | public function __construct( |
||
18 | ValidatorInterface $validator, |
||
19 | RequestStack $requestStack, |
||
20 | RestMetadataFactory $metadataFactory, |
||
21 | PropertyAccessorInterface $propertyAccessor, |
||
22 | CrudServiceInterface $service, |
||
23 | SerializerInterface $serializer |
||
24 | ) { |
||
25 | parent::__construct( |
||
26 | $validator, |
||
27 | $requestStack, |
||
28 | $metadataFactory, |
||
29 | $propertyAccessor, |
||
30 | $serializer |
||
31 | ); |
||
32 | $this->service = $service; |
||
33 | } |
||
34 | |||
43 |