| Total Complexity | 4 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | class CancelRequestHandler extends AbstractRequestHandler |
||
| 14 | { |
||
| 15 | 2 | public function __construct( |
|
| 16 | private readonly ResponseHelper $responseHelper, |
||
| 17 | private readonly string $output, |
||
| 18 | array $supportedApplicationIds |
||
| 19 | ) { |
||
| 20 | 2 | parent::__construct(); |
|
| 21 | 2 | $this->supportedApplicationIds = $supportedApplicationIds; |
|
| 22 | } |
||
| 23 | |||
| 24 | 2 | public function supportsRequest(Request $request): bool |
|
| 28 | } |
||
| 29 | |||
| 30 | 1 | public function handleRequest(Request $request): Response |
|
| 33 | } |
||
| 34 | } |
||
| 35 |