1 | <?php |
||
2 | |||
0 ignored issues
–
show
Coding Style
introduced
by
![]() |
|||
3 | namespace Hhxsv5\LaravelS\Swoole\Socket; |
||
4 | |||
5 | use Swoole\Server\Port; |
||
6 | |||
7 | abstract class Http implements PortInterface, HttpInterface |
||
0 ignored issues
–
show
|
|||
8 | { |
||
9 | protected $swoolePort; |
||
10 | |||
11 | public function __construct(Port $port) |
||
0 ignored issues
–
show
|
|||
12 | { |
||
13 | $this->swoolePort = $port; |
||
14 | } |
||
15 | } |