From 946ab52d618d4e575591e29234f95c400586f53e Mon Sep 17 00:00:00 2001 From: Avior Date: Wed, 17 Apr 2019 21:14:11 +0200 Subject: [PATCH] Removed spaced in index --- src/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.php b/src/index.php index f76091f..d7c0ef2 100644 --- a/src/index.php +++ b/src/index.php @@ -24,7 +24,7 @@ $caches = $cache->getMultiple(array( //if cache don't exist create it! $cachesBool = $caches["routes"] === null || $caches['templates'] === null || $caches['forms'] === null; -if (!($ap->isCacheEnabled()) || $cachesBool ) { +if (!($ap->isCacheEnabled()) || $cachesBool) { $modulesDIR = __DIR__ . "/Modules"; $modules = array_diff(scandir($modulesDIR), array('..', '.')); /** @var string $module */