This repository has been archived on 2024-07-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2023-03-09 16:42:07 -08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
use Psr\Container\ContainerInterface;
|
|
|
|
|
|
|
|
|
|
return function(ContainerInterface $container) {
|
|
|
|
|
$container->set('settings', function() {
|
|
|
|
|
return [
|
|
|
|
|
'displayErrorDetails' => true,
|
|
|
|
|
'logErrorDetails' => true,
|
|
|
|
|
'logErrors' => true
|
|
|
|
|
];
|
|
|
|
|
});
|
|
|
|
|
};
|