| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 1 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 31 | public function deserialize( |
||
| 32 | string $serializedData, |
||
| 33 | // string $dtoClassPath, |
||
| 34 | string $format = SerializerConstants::FORMAT_JSON |
||
| 35 | ): array { |
||
| 36 | return \json_decode($serializedData, true, 512, JSON_THROW_ON_ERROR); |
||
| 37 | // return $this->getFactory()->createSerializer()->deserialize($serializedData, $dtoClassPath, $format); |
||
| 40 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.