Total Complexity | 6 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
14 | class Denormalizer implements DenormalizerInterface |
||
15 | { |
||
16 | /** |
||
17 | * @var ObjectHydratorInterface |
||
18 | */ |
||
19 | private $hydrator; |
||
20 | |||
21 | 44 | public function __construct(ObjectHydratorInterface $hydrator) |
|
24 | 44 | } |
|
25 | |||
26 | 29 | public function denormalize($data, $class, $format = null, array $context = array()) |
|
35 | } |
||
36 | |||
37 | 26 | public function supportsDenormalization($data, $type, $format = null) |
|
42 |