File "DateRangeFilterIterator.php"

Full Path: /home/warrior1/public_html/plugins/mailpoet/vendor-prefixed/symfony/finder/Iterator/DateRangeFilterIterator.php
File size: 707 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace MailPoetVendor\Symfony\Component\Finder\Iterator;
if (!defined('ABSPATH')) exit;
use MailPoetVendor\Symfony\Component\Finder\Comparator\DateComparator;
class DateRangeFilterIterator extends \FilterIterator
{
 private $comparators = [];
 public function __construct(\Iterator $iterator, array $comparators)
 {
 $this->comparators = $comparators;
 parent::__construct($iterator);
 }
 #[\ReturnTypeWillChange]
 public function accept()
 {
 $fileinfo = $this->current();
 if (!\file_exists($fileinfo->getPathname())) {
 return \false;
 }
 $filedate = $fileinfo->getMTime();
 foreach ($this->comparators as $compare) {
 if (!$compare->test($filedate)) {
 return \false;
 }
 }
 return \true;
 }
}