Your IP : 216.73.216.97


Current Path : /var/www/clients/client3/web2/web/vendor/magento/module-store/Model/Config/
Upload File :
Current File : /var/www/clients/client3/web2/web/vendor/magento/module-store/Model/Config/Converter.php

<?php
/**
 * DB configuration data converter. Converts associative array to tree array
 *
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Store\Model\Config;

/**
 * Class Converter.
 */
class Converter extends \Magento\Framework\App\Config\Scope\Converter
{
    /**
     * Convert config data
     *
     * @param array $source
     * @param array $initialConfig
     * @return array
     */
    public function convert($source, $initialConfig = [])
    {
        return array_replace_recursive($initialConfig, parent::convert($source));
    }
}