Issues (1019)

src/Swoole/Socket/HttpInterface.php (3 issues)

1
<?php
2
0 ignored issues
show
Missing file doc comment
Loading history...
3
namespace Hhxsv5\LaravelS\Swoole\Socket;
4
5
use Swoole\Http\Request;
6
use Swoole\Http\Response;
7
8
interface HttpInterface
0 ignored issues
show
Missing doc comment for interface HttpInterface
Loading history...
9
{
10
    public function onRequest(Request $request, Response $response);
0 ignored issues
show
Missing doc comment for function onRequest()
Loading history...
11
}