Skip to content

Commit

Permalink
Merge pull request #14 from voku/analysis-zdjZlg
Browse files Browse the repository at this point in the history
Applied fixes from StyleCI
  • Loading branch information
voku committed Jun 30, 2016
2 parents 3a9e68e + 8fedba9 commit e0e79a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/voku/cache/Cache.php
Expand Up @@ -428,7 +428,7 @@ private function cleanStoreKey($str)
);
$str = html_entity_decode($str, ENT_QUOTES, 'UTF-8');
$str = htmlentities($str, ENT_QUOTES, 'UTF-8');
$str = preg_replace("/(&)([a-z])([a-z]+;)/i", '$2', $str);
$str = preg_replace('/(&)([a-z])([a-z]+;)/i', '$2', $str);
$str = str_replace(' ', '-', $str);
$str = rawurlencode($str);
$str = str_replace('%', '-', $str);
Expand Down

0 comments on commit e0e79a9

Please sign in to comment.