![]() 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/cartforge.co/vendor/magento/framework/Config/File/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\Config\File; /** * Stores file key to file name config * @api * @since 100.0.2 */ class ConfigFilePool { const APP_CONFIG = 'app_config'; const APP_ENV = 'app_env'; /** * @deprecated Magento does not support custom config file pools since 2.2.0 version */ const LOCAL = 'local'; /** * @deprecated Magento does not support custom config file pools since 2.2.0 version */ const DIST = 'dist'; /** * Default files for configuration * * @var array */ private $applicationConfigFiles = [ self::APP_CONFIG => 'config.php', self::APP_ENV => 'env.php', ]; /** * Initial files for configuration * * @var array * @deprecated 101.0.0 Magento does not support custom config file pools since 2.2.0 version */ private $initialConfigFiles = [ self::DIST => [ self::APP_CONFIG => 'config.dist.php', self::APP_ENV => 'env.dist.php', ], self::LOCAL => [ self::APP_CONFIG => 'config.local.php', self::APP_ENV => 'env.local.php', ] ]; /** * Constructor * * @param array $additionalConfigFiles */ public function __construct($additionalConfigFiles = []) { $this->applicationConfigFiles = array_merge($this->applicationConfigFiles, $additionalConfigFiles); } /** * Returns application config files. * * @return array */ public function getPaths() { return $this->applicationConfigFiles; } /** * Returns file path by config key * * @param string $fileKey * @return string * @throws \Exception */ public function getPath($fileKey) { if (!isset($this->applicationConfigFiles[$fileKey])) { throw new \Exception('File config key does not exist.'); } return $this->applicationConfigFiles[$fileKey]; } /** * Returns application initial config files. * * @return array * @deprecated 101.0.0 Magento does not support custom config file pools since 2.2.0 version * @since 100.1.3 */ public function getInitialFilePools() { return $this->initialConfigFiles; } /** * Retrieve all config file pools. * * @param string $pool * @return array * @deprecated 101.0.0 Magento does not support custom config file pools since 2.2.0 version * @since 100.1.3 */ public function getPathsByPool($pool) { return $this->initialConfigFiles[$pool]; } }