File "LazyIterator.php"

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

<?php
namespace MailPoetVendor\Symfony\Component\Finder\Iterator;
if (!defined('ABSPATH')) exit;
class LazyIterator implements \IteratorAggregate
{
 private $iteratorFactory;
 public function __construct(callable $iteratorFactory)
 {
 $this->iteratorFactory = $iteratorFactory;
 }
 public function getIterator() : \Traversable
 {
 yield from ($this->iteratorFactory)();
 }
}