Removed spaced in index

This commit is contained in:
Florian Bouillon 2019-04-17 21:14:11 +02:00
parent 21c8fff855
commit 946ab52d61

View File

@ -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 */