diff --git a/caches/FileCache.php b/caches/FileCache.php index 2ece7e2d..3691fe51 100644 --- a/caches/FileCache.php +++ b/caches/FileCache.php @@ -55,7 +55,7 @@ class FileCache implements CacheInterface { * @return self */ public function setParameters(array $param){ - $this->param = $param; + $this->param = array_map('strtolower', $param); return $this; }