1
0
Fork 0
rozštěpen z blallo/rss-bridge

[FileCache] Change parameters to lower-case

This prevents creating multiple cache files for the same request.
Tento commit je obsažen v:
logmanoriginal 2016-10-08 15:34:17 +02:00
rodič 5de4a59d41
revize 5639b158e7

Zobrazit soubor

@ -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;
}