Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/framework/View/Element/UiComponent/Config/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/framework/View/Element/UiComponent/Config/ReaderFactory.php

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

use Magento\Framework\ObjectManagerInterface;

/**
 * Class ReaderFactory
 */
class ReaderFactory
{
    const INSTANCE_NAME = \Magento\Framework\View\Element\UiComponent\Config\Reader::class;

    /**
     * @var ObjectManagerInterface
     */
    protected $objectManager;

    /**
     * Constructor
     *
     * @param ObjectManagerInterface $objectManager
     */
    public function __construct(ObjectManagerInterface $objectManager)
    {
        $this->objectManager = $objectManager;
    }

    /**
     * Create config reader
     *
     * @param array $arguments
     * @return UiReaderInterface
     */
    public function create(array $arguments = [])
    {
        return $this->objectManager->create(static::INSTANCE_NAME, $arguments);
    }
}