Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
3 / 3
100.00% covered (success)
100.00%
1 / 1
CRAP
100.00% covered (success)
100.00%
1 / 1
TwigExceptionHandler
100.00% covered (success)
100.00%
3 / 3
100.00% covered (success)
100.00%
1 / 1
2
100.00% covered (success)
100.00%
1 / 1
 withHtml
100.00% covered (success)
100.00%
3 / 3
100.00% covered (success)
100.00%
1 / 1
2
1<?php
2
3namespace BO\Zmsticketprinter\Helper;
4
5use Psr\Http\Message\RequestInterface;
6use Psr\Http\Message\ResponseInterface;
7
8class TwigExceptionHandler extends \BO\Slim\TwigExceptionHandler
9{
10    #[\Override]
11    public static function withHtml(
12        RequestInterface $request,
13        ResponseInterface $response,
14        \Throwable $exception,
15        $status = 500
16    ): ResponseInterface {
17        $ticketprinterHash = \BO\Zmsclient\Ticketprinter::getHash();
18        if ($ticketprinterHash) {
19            // @codeCoverageIgnoreStart
20            $exception->templatedata = [
21                'hash' => $ticketprinterHash,
22            ];
23            // @codeCoverageIgnoreEnd
24        }
25        return parent::withHtml($request, $response, $exception, $status);
26    }
27}