Your IP : 216.73.217.13


Current Path : /home/rtorresani/www/vendor/magento/module-analytics/Model/Config/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-analytics/Model/Config/Reader.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Analytics\Model\Config;

use Magento\Framework\Config\ReaderInterface;

/**
 * Composite reader for config.
 */
class Reader implements ReaderInterface
{
    /**
     * @var ReaderInterface[]
     */
    private $readers;

    /**
     * @var Mapper
     */
    private $mapper;

    /**
     * @param Mapper $mapper
     * @param ReaderInterface[] $readers
     */
    public function __construct(
        Mapper $mapper,
        $readers = []
    ) {
        $this->mapper = $mapper;
        $this->readers = $readers;
    }

    /**
     * Read configuration scope.
     *
     * @param string|null $scope
     * @return array
     */
    public function read($scope = null)
    {
        $data = [];
        foreach ($this->readers as $reader) {
            $data = array_merge_recursive($data, $reader->read($scope));
        }

        return $this->mapper->execute($data);
    }
}