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