Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | public function __construct( |
||
23 | ViewRenderer $viewRenderer, |
||
24 | ContactMailer $mailer, |
||
25 | LoggerInterface $logger, |
||
26 | ResponseFactoryInterface $responseFactory |
||
27 | ) { |
||
28 | $this->mailer = $mailer; |
||
29 | $this->logger = $logger; |
||
30 | $this->viewRenderer = $viewRenderer->withControllerName('contact'); |
||
31 | $this->responseFactory = $responseFactory; |
||
32 | } |
||
54 |