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