| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 64 | 9 | public function __construct( |
|
| 65 | Pagerfanta $pagerfanta, |
||
| 66 | RouteGeneratorInterface $routeGenerator, |
||
| 67 | ViewInterface $view, |
||
| 68 | array $viewOption |
||
| 69 | ) { |
||
| 70 | 9 | $this->pagerfanta = $pagerfanta; |
|
| 71 | 9 | $this->routeGenerator = $routeGenerator; |
|
| 72 | 9 | $this->view = $view; |
|
| 73 | 9 | $this->viewOption = $viewOption; |
|
| 74 | 9 | } |
|
| 75 | |||
| 93 |