13 lines
312 B
PHP
13 lines
312 B
PHP
<?php
|
|
|
|
use Psr\Container\ContainerInterface;
|
|
|
|
return function(ContainerInterface $container) {
|
|
$container->set('settings', function() {
|
|
return [
|
|
'displayErrorDetails' => true,
|
|
'logErrorDetails' => true,
|
|
'logErrors' => true
|
|
];
|
|
});
|
|
}; |