[FileCache] Do not delete .gitkeep
This commit reduces the chance of accidentally removing the cache folder from repository.
This commit is contained in:
parent
790bd17d41
commit
1d26c7f1c3
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ class FileCache implements CacheInterface {
|
||||||
);
|
);
|
||||||
|
|
||||||
foreach($cacheIterator as $cacheFile){
|
foreach($cacheIterator as $cacheFile){
|
||||||
if(in_array($cacheFile->getBasename(), array('.', '..')))
|
if(in_array($cacheFile->getBasename(), array('.', '..', '.gitkeep')))
|
||||||
continue;
|
continue;
|
||||||
elseif($cacheFile->isFile()){
|
elseif($cacheFile->isFile()){
|
||||||
if(filemtime($cacheFile->getPathname()) < time() - $duration)
|
if(filemtime($cacheFile->getPathname()) < time() - $duration)
|
||||||
|
|
Loading…
Reference in a new issue