added opcache_ireset() for debugging

This commit is contained in:
tracer 2022-10-27 10:37:05 +02:00
parent 70aa4d1f06
commit 9ee8ae39df
1 changed files with 5 additions and 0 deletions

View File

@ -12,6 +12,11 @@ ini_set(option: 'display_startup_errors', value: 1);
// no one sane should ignore deprecations
error_reporting(error_level: E_ALL);
// just during dev
opcache_reset();
session_start();
require dirname(path: __DIR__) . '/src/bootstrap.php';