From 317eee3aa868334a8bc9d9450120691ae7996eac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robson=20Ten=C3=B3rio?= Date: Thu, 15 May 2025 11:12:49 -0300 Subject: [PATCH] Remove `opcache_invalidate()` --- src/ComponentFactory.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/ComponentFactory.php b/src/ComponentFactory.php index ad9c489..e4d7735 100644 --- a/src/ComponentFactory.php +++ b/src/ComponentFactory.php @@ -31,10 +31,6 @@ public function make(string $componentName, string $path): string ); if (static::$latestCreatedComponentClass) { - if (function_exists('opcache_invalidate')) { - opcache_invalidate($path, true); - } - return static::$latestCreatedComponentClass; }