server/src/bootstrap/app.php
changeset 2 00e2916104fe
parent 1 01a844d292ac
equal deleted inserted replaced
1:01a844d292ac 2:00e2916104fe
    26 |
    26 |
    27 */
    27 */
    28 
    28 
    29 $app->singleton(
    29 $app->singleton(
    30 	'Illuminate\Contracts\Http\Kernel',
    30 	'Illuminate\Contracts\Http\Kernel',
    31 	'App\Http\Kernel'
    31 	'CorpusParole\Http\Kernel'
    32 );
    32 );
    33 
    33 
    34 $app->singleton(
    34 $app->singleton(
    35 	'Illuminate\Contracts\Console\Kernel',
    35 	'Illuminate\Contracts\Console\Kernel',
    36 	'App\Console\Kernel'
    36 	'CorpusParole\Console\Kernel'
    37 );
    37 );
    38 
    38 
    39 $app->singleton(
    39 $app->singleton(
    40 	'Illuminate\Contracts\Debug\ExceptionHandler',
    40 	'Illuminate\Contracts\Debug\ExceptionHandler',
    41 	'App\Exceptions\Handler'
    41 	'CorpusParole\Exceptions\Handler'
    42 );
    42 );
    43 
    43 
    44 /*
    44 /*
    45 |--------------------------------------------------------------------------
    45 |--------------------------------------------------------------------------
    46 | Return The Application
    46 | Return The Application