Skip to content

Commit f1d3b7f

Browse files
committed
Update configs
1 parent f3e2602 commit f1d3b7f

4 files changed

Lines changed: 6 additions & 1 deletion

File tree

config/console.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,12 @@
1414
*/
1515
return [
1616
'default' => [
17+
'find_in_namespaces' => false,
1718
'directories' => [
1819
APLUS_DIR . 'dev-commands/src',
1920
APP_DIR . 'Commands',
2021
],
21-
'find_in_namespaces' => false,
22+
'commands' => null,
2223
'language_instance' => 'default',
2324
'locator_instance' => 'default',
2425
],

config/exceptionHandler.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
return [
1818
'default' => [
1919
'initialize' => true,
20+
'handle_errors' => true,
2021
'environment' => IS_DEV
2122
? ExceptionHandler::DEVELOPMENT
2223
: ExceptionHandler::PRODUCTION,

config/language.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,7 @@
2929
],
3030
'find_in_namespaces' => false,
3131
'negotiate' => false,
32+
'autoloader_instance' => 'default',
33+
'request_instance' => 'default',
3234
],
3335
];

config/logger.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,6 @@
2020
'class' => env('logger.default.class', MultiFileLogger::class),
2121
'destination' => env('logger.default.destination', STORAGE_DIR . 'logs'),
2222
'level' => env('logger.default.level', LogLevel::DEBUG),
23+
'config' => [],
2324
],
2425
];

0 commit comments

Comments
 (0)