Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
11 / 11 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
1 | <?php |
2 | /* |
3 | * This file is part of App Project. |
4 | * |
5 | * For the full copyright and license information, please view the LICENSE |
6 | * file that was distributed with this source code. |
7 | */ |
8 | /** |
9 | * Exceptions config. |
10 | * |
11 | * @see App::exceptionHandler() |
12 | * @see https://docs.aplus-framework.com/guides/libraries/mvc/index.html#exception-handler-service |
13 | */ |
14 | |
15 | use Framework\Debug\ExceptionHandler; |
16 | |
17 | return [ |
18 | 'default' => [ |
19 | 'initialize' => true, |
20 | 'environment' => IS_DEV |
21 | ? ExceptionHandler::DEVELOPMENT |
22 | : ExceptionHandler::PRODUCTION, |
23 | 'development_view' => null, |
24 | 'production_view' => null, |
25 | 'logger_instance' => 'default', |
26 | 'language_instance' => 'default', |
27 | ], |
28 | ]; |