Issues (1019)

src/Swoole/Socket/Http.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\Server\Port;
6
7
abstract class Http implements PortInterface, HttpInterface
0 ignored issues
show
Missing doc comment for class Http
Loading history...
8
{
9
    protected $swoolePort;
10
11
    public function __construct(Port $port)
0 ignored issues
show
Missing doc comment for function __construct()
Loading history...
12
    {
13
        $this->swoolePort = $port;
14
    }
15
}