![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/framework/App/Arguments/FileResolver/ |
<?php /** * Application primary config file resolver * * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\App\Arguments\FileResolver; use Magento\Framework\App\Filesystem\DirectoryList; class Primary implements \Magento\Framework\Config\FileResolverInterface { /** * @var \Magento\Framework\Filesystem\Directory\ReadInterface */ protected $configDirectory; /** * @var \Magento\Framework\Config\FileIteratorFactory */ protected $iteratorFactory; /** * @param \Magento\Framework\Filesystem $filesystem * @param \Magento\Framework\Config\FileIteratorFactory $iteratorFactory */ public function __construct( \Magento\Framework\Filesystem $filesystem, \Magento\Framework\Config\FileIteratorFactory $iteratorFactory ) { $this->configDirectory = $filesystem->getDirectoryRead(DirectoryList::CONFIG); $this->iteratorFactory = $iteratorFactory; } /** * {@inheritdoc} * @SuppressWarnings(PHPMD.UnusedFormalParameter) */ public function get($filename, $scope) { $configPaths = $this->configDirectory->search('{*' . $filename . ',*/*' . $filename . '}'); $configAbsolutePaths = []; foreach ($configPaths as $configPath) { $configAbsolutePaths[] = $this->configDirectory->getAbsolutePath($configPath); } return $this->iteratorFactory->create($configAbsolutePaths); } }