Conditions | 2 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
50 | 3 | public function renderPagination( |
|
51 | \Twig_Environment $env, |
||
52 | Configuration $pagination, |
||
53 | $template = null, |
||
54 | array $view_params = [] |
||
55 | ) { |
||
56 | 3 | return $env->render( |
|
57 | 3 | $template ?: $this->template, |
|
58 | 3 | array_merge( |
|
59 | 3 | $view_params, |
|
60 | 3 | ['pagination' => $pagination->getView()] |
|
61 | 3 | ) |
|
62 | 3 | ); |
|
63 | } |
||
64 | |||
73 |