Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
56 | 4 | public function deserialize(string $data) |
|
57 | { |
||
58 | 4 | $result = $this->serializer->deserialize($data, Command::class, $this->format); |
|
59 | |||
60 | 4 | if (!is_object($result)) { |
|
61 | 2 | throw new \RuntimeException(sprintf('Failed deserialize data "%s"', $data)); |
|
62 | } |
||
63 | |||
64 | 2 | return $result; |
|
65 | } |
||
66 | } |
||
67 |