| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 45 | 14 | public function __construct( |
|
| 46 | ResponseFactoryInterface $responseFactory, |
||
| 47 | TemplateRendererInterface $template, |
||
| 48 | string $view, |
||
| 49 | bool $debug = false |
||
| 50 | ) { |
||
| 51 | 14 | $this->responseFactory = $responseFactory; |
|
| 52 | 14 | $this->template = $template; |
|
| 53 | 14 | $this->view = $view; |
|
| 54 | 14 | $this->debug = $debug; |
|
| 55 | } |
||
| 74 |