| Conditions | 3 |
| Paths | 2 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 51 | 3 | public function resolve(array $headers) |
|
| 52 | { |
||
| 53 | 3 | if (!isset($headers[HeaderTypeEnum::CONTENT_TYPE]) || |
|
| 54 | 3 | !isset($this->messageSerializers[$headers[HeaderTypeEnum::CONTENT_TYPE]]) |
|
| 55 | ) { |
||
| 56 | 2 | return $this->defaultSerializer; |
|
| 57 | } |
||
| 58 | |||
| 59 | 1 | return $this->messageSerializers[$headers[HeaderTypeEnum::CONTENT_TYPE]]; |
|
| 60 | } |
||
| 61 | } |
||
| 62 |