| Total Complexity | 5 |
| Total Lines | 41 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class HtmlMinifierMiddleware extends AbstractHtmlMinifierMiddleware |
||
| 13 | { |
||
| 14 | protected AdapterInterface $adapter; |
||
| 15 | |||
| 16 | public function getAdapter(): AdapterInterface |
||
| 17 | { |
||
| 18 | return $this->adapter; |
||
| 19 | } |
||
| 20 | |||
| 21 | public function setAdapter(AdapterInterface $adapter): self |
||
| 22 | { |
||
| 23 | $this->adapter = $adapter; |
||
| 24 | |||
| 25 | return $this; |
||
| 26 | } |
||
| 27 | |||
| 28 | public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface |
||
| 53 | } |
||
| 54 | } |
||
| 55 |