| Total Complexity | 1 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | abstract class AbstractApiApplication |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @param array<string, scalar> $args |
||
| 15 | */ |
||
| 16 | abstract protected function run( |
||
| 17 | ServerRequestInterface $request, |
||
| 18 | JsonEnabledResponseInterface $response, |
||
| 19 | array $args |
||
| 20 | ): ResponseInterface; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param array<string, scalar> $args |
||
| 24 | */ |
||
| 25 | 84 | public function __invoke( |
|
| 33 |