Undefined constant "GLOB_BRACE" if using docker with alpine linux.
please change line 33 to make it work for GNU and non GNU systems.
from : $templateCacheFiles = glob($templateCacheDir . '/.{json,temp}', GLOB_BRACE);
to : $templateCacheFiles = glob($templateCacheDir . '/.{json,temp}', (defined('GLOB_BRACE') ? GLOB_BRACE | GLOB_ONLYDIR : GLOB_ONLYDIR));
Undefined constant "GLOB_BRACE" if using docker with alpine linux.
please change line 33 to make it work for GNU and non GNU systems.
from : $templateCacheFiles = glob($templateCacheDir . '/.{json,temp}', GLOB_BRACE);
to : $templateCacheFiles = glob($templateCacheDir . '/.{json,temp}', (defined('GLOB_BRACE') ? GLOB_BRACE | GLOB_ONLYDIR : GLOB_ONLYDIR));