| Conditions | 3 |
| Paths | 3 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 0 | ||
| 1 | <?php |
||
| 48 | public function renderArticle(Article $article, string $format = 'json'): string |
||
| 49 | { |
||
| 50 | if ($format == 'json') { |
||
| 51 | $renderer = new JsonRenderer(); |
||
| 52 | } elseif ($format == 'xml') { |
||
| 53 | $renderer = new XmlRenderer(); |
||
| 54 | } else { |
||
| 55 | throw new \InvalidArgumentException(); |
||
| 56 | } |
||
| 57 | |||
| 58 | return $renderer->renderArticle($article); |
||
| 59 | } |
||
| 61 |