Issues (1019)

src/Illuminate/LaravelTrait.php (3 issues)

1
<?php
2
0 ignored issues
show
Missing file doc comment
Loading history...
3
namespace Hhxsv5\LaravelS\Illuminate;
4
5
use Swoole\Http\Server;
6
7
trait LaravelTrait
0 ignored issues
show
Missing doc comment for trait LaravelTrait
Loading history...
8
{
9
    protected function initLaravel(array $conf, Server $swoole)
0 ignored issues
show
Missing doc comment for function initLaravel()
Loading history...
10
    {
11
        $laravel = new Laravel($conf);
12
        $laravel->prepareLaravel();
13
        $laravel->bindSwoole($swoole);
14
        return $laravel;
15
    }
16
}