12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- /**
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\Config;
- /**
- * @api
- * @since 100.0.2
- */
- class FileIteratorFactory
- {
- /**
- * @var \Magento\Framework\Filesystem\File\ReadFactory
- */
- private $fileReadFactory;
- /**
- * Constructor
- *
- * @param \Magento\Framework\Filesystem\File\ReadFactory $fileReadFactory
- */
- public function __construct(\Magento\Framework\Filesystem\File\ReadFactory $fileReadFactory)
- {
- $this->fileReadFactory = $fileReadFactory;
- }
- /**
- * Create file iterator
- *
- * @param array $paths List of absolute paths
- * @return FileIterator
- */
- public function create($paths)
- {
- return new FileIterator($this->fileReadFactory, $paths);
- }
- }
|