Conditions | 2 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 2 |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
58 | 3 | public function render( |
|
59 | \Twig_Environment $env, |
||
60 | Configuration $pagination, |
||
61 | $template = null, |
||
62 | array $view_params = [] |
||
63 | ) { |
||
64 | 3 | return $env->render( |
|
65 | 3 | $template ?: $this->template, |
|
66 | 3 | array_merge( |
|
67 | 3 | $view_params, |
|
68 | 3 | ['pagination' => $pagination->getView()] |
|
69 | 3 | ) |
|
70 | 3 | ); |
|
71 | } |
||
72 | |||
81 |