Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
21 | public function render(array $params = []) |
||
22 | { |
||
23 | $this->view->registerMetaTag([ |
||
24 | 'name' => 'keywords', |
||
25 | 'content' => $this->keywords, |
||
26 | ]); |
||
27 | |||
28 | $this->view->registerMetaTag([ |
||
29 | 'name' => 'description', |
||
30 | 'content' => $this->description, |
||
31 | ]); |
||
32 | |||
33 | return $this->text; |
||
34 | } |
||
35 | |||
79 |