| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 42 | 24 | public function build($contentType, $contentAsTransported) |
|
| 43 | { |
||
| 44 | 24 | if(isset($this->factories[$contentType])) |
|
| 45 | 24 | { |
|
| 46 | 19 | return $this->factories[$contentType]->build($contentAsTransported); |
|
| 47 | } |
||
| 48 | |||
| 49 | 6 | $this->logger->warning(__CLASS__ . ": unknown content-type, use empty body"); |
|
| 50 | |||
| 51 | 6 | return new NullBody(); |
|
| 52 | } |
||
| 53 | } |
||
| 54 |