2021-07-23 03:18:33 +02:00
|
|
|
<?php
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
namespace MailAccountAdmin;
|
|
|
|
|
|
|
|
|
|
use Slim\App;
|
|
|
|
|
use Slim\Views\TwigMiddleware;
|
|
|
|
|
|
|
|
|
|
class Middlewares
|
|
|
|
|
{
|
2021-07-26 23:14:14 +02:00
|
|
|
public static function setMiddlewares(App $app, Settings $settings): void
|
2021-07-23 03:18:33 +02:00
|
|
|
{
|
2021-07-26 23:14:14 +02:00
|
|
|
$displayErrorDetails = $settings->isDebugMode();
|
|
|
|
|
|
|
|
|
|
$app->addErrorMiddleware($displayErrorDetails, true, true);
|
2021-07-23 03:18:33 +02:00
|
|
|
$app->add(TwigMiddleware::createFromContainer($app));
|
|
|
|
|
}
|
|
|
|
|
}
|