File "NoDotFilterIterator.php"
Full path: /home/argothem/www/v4_old/plugins-dist/archiviste/src/NoDotFilterIterator.php
File size: 190 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Spip\Archiver;
class NoDotFilterIterator extends \FilterIterator
{
public function accept(): bool {
return !in_array($this->current()->getFilename(), ['.', '..']);
}
}