From 73eeeed6050f77fedbc944e87a112224220cc502 Mon Sep 17 00:00:00 2001 From: Awilum Date: Sun, 6 Jan 2019 18:51:11 +0300 Subject: [PATCH] Flextype Core: Cache - ability to delete glide cache folder added. --- flextype/Cache.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/flextype/Cache.php b/flextype/Cache.php index 4fc7fb94..9519cb4b 100755 --- a/flextype/Cache.php +++ b/flextype/Cache.php @@ -273,8 +273,9 @@ class Cache // Clear opcache function_exists('opcache_reset') and @opcache_reset(); - // Remove cache dir + // Remove cache dirs Filesystem::deleteDir(PATH['cache'] . '/doctrine/'); + Filesystem::deleteDir(PATH['cache'] . '/glide/'); } /**