Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
33 | public function denormalize($data, $class, $format = null, array $context = []) |
||
34 | { |
||
35 | $this->logger->warning( |
||
36 | sprintf('Invalid configuration for %s for mapping configurable entity attributes.', $class), |
||
37 | [ |
||
38 | 'data' => $data, |
||
39 | 'context' => $context |
||
40 | ] |
||
41 | ); |
||
42 | |||
43 | return null; |
||
44 | } |
||
45 | |||
59 |