| 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 |
||
| 55 | 3 | public function render( |
|
| 56 | \Twig_Environment $env, |
||
| 57 | Configuration $pagination, |
||
| 58 | $template = null, |
||
| 59 | array $view_params = [] |
||
| 60 | ) { |
||
| 61 | 3 | return $env->render( |
|
| 62 | 3 | $template ?: $this->template, |
|
| 63 | 3 | array_merge( |
|
| 64 | 3 | $view_params, |
|
| 65 | 3 | ['pagination' => $pagination->getView()] |
|
| 66 | 3 | ) |
|
| 67 | 3 | ); |
|
| 68 | } |
||
| 69 | |||
| 78 |