pixelfederation/swoole-bundle

View on GitHub
src/Server/RequestHandler/ExceptionHandler/ExceptionHandlerInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace K911\Swoole\Server\RequestHandler\ExceptionHandler;

use Swoole\Http\Request;
use Swoole\Http\Response;

interface ExceptionHandlerInterface
{
    public function handle(Request $request, \Throwable $exception, Response $response): void;
}