Conditions | 2 |
Paths | 2 |
Total Lines | 14 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
48 | public function process(Request $request, DelegateInterface $delegate) |
||
49 | { |
||
50 | if ($this->log) { |
||
51 | $this->log->info('404 - Page not found on URL: '.$request->getUri()->getPath()); |
||
52 | } |
||
53 | |||
54 | $response = SplashUtils::buildControllerResponse( |
||
55 | function () use ($request) { |
||
56 | return $this->pageNotFoundController->pageNotFound($request); |
||
57 | } |
||
58 | ); |
||
59 | |||
60 | return $response; |
||
61 | } |
||
62 | } |
||
63 |