This repository has been archived on 2024-07-18. You can view files and clone it, but cannot push or open issues or pull requests.
slim/app/settings.php

13 lines
312 B
PHP
Raw Normal View History

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
];
});
};