Вход Регистрация
Файл: system/vendor/illuminate/contracts/Http/Kernel.php
Строк: 61
<?php

namespace IlluminateContractsHttp;

interface 
Kernel
{
    
/**
     * Bootstrap the application for HTTP requests.
     *
     * @return void
     */
    
public function bootstrap();

    
/**
     * Handle an incoming HTTP request.
     *
     * @param  SymfonyComponentHttpFoundationRequest  $request
     * @return SymfonyComponentHttpFoundationResponse
     */
    
public function handle($request);

    
/**
     * Perform any final actions for the request lifecycle.
     *
     * @param  SymfonyComponentHttpFoundationRequest  $request
     * @param  SymfonyComponentHttpFoundationResponse  $response
     * @return void
     */
    
public function terminate($request$response);

    
/**
     * Get the Laravel application instance.
     *
     * @return IlluminateContractsFoundationApplication
     */
    
public function getApplication();
}
Онлайн: 2
Реклама