Issues (1019)

src/Swoole/Events/ServerStartInterface.php (4 issues)

1
<?php
2
0 ignored issues
show
Missing file doc comment
Loading history...
3
namespace Hhxsv5\LaravelS\Swoole\Events;
4
5
use Swoole\Http\Server;
6
7
interface ServerStartInterface
0 ignored issues
show
Missing doc comment for interface ServerStartInterface
Loading history...
8
{
9
    public function __construct();
0 ignored issues
show
Missing doc comment for function __construct()
Loading history...
10
11
    public function handle(Server $server);
0 ignored issues
show
Missing doc comment for function handle()
Loading history...
12
}