Codeception\Lib\Connector\Laravel5::__construct PHP Метод

__construct() публичный Метод

Constructor.
public __construct ( Illuminate\Foundation\Application $app )
$app Illuminate\Foundation\Application
    public function __construct(Application $app)
    {
        $this->app = $app;
        $this->httpKernel = $this->app->make('Illuminate\\Contracts\\Http\\Kernel');
        $this->httpKernel->bootstrap();
        $this->app->boot();
        parent::__construct($this);
    }