From 9ee8ae39df43391b3965a578db6831b69be6b786 Mon Sep 17 00:00:00 2001
From: tracer <tracer@24unix.net>
Date: Thu, 27 Oct 2022 10:37:05 +0200
Subject: [PATCH] added opcache_ireset() for debugging

---
 public/index.php | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/public/index.php b/public/index.php
index b5e37b4..85dbb74 100644
--- a/public/index.php
+++ b/public/index.php
@@ -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';