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 |
||
42 | 18 | public function __construct( |
|
43 | ResponseFactoryInterface $responseFactory, |
||
44 | TemplateRendererInterface $template, |
||
45 | string $view, |
||
46 | bool $debug = false |
||
47 | ) { |
||
48 | 18 | $this->responseFactory = $responseFactory; |
|
49 | 18 | $this->template = $template; |
|
50 | 18 | $this->view = $view; |
|
51 | 18 | $this->debug = $debug; |
|
52 | } |
||
69 |