| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 45 | public function seo($alias = null) |
||
| 46 | { |
||
| 47 | if (null !== $alias) { |
||
| 48 | return $this->generatorProvider->get($alias)->render(); |
||
| 49 | } |
||
| 50 | |||
| 51 | return implode(PHP_EOL, |
||
| 52 | array_map(function (RenderableInterface $tag) { |
||
| 53 | return $tag->render(); |
||
| 54 | }, $this->generatorProvider->getAll()) |
||
| 55 | ); |
||
| 56 | } |
||
| 57 | |||
| 68 |