![]() 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/module-eav/Model/Entity/Attribute/Config/ |
<?php /** * Attribute configuration reader * * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model\Entity\Attribute\Config; class Reader extends \Magento\Framework\Config\Reader\Filesystem { /** * Xml merging attributes * * @var array */ protected $_idAttributes = [ '/config/entity' => 'type', '/config/entity/attribute' => 'code', '/config/entity/attribute/field' => 'code', ]; /** * @param \Magento\Framework\Config\FileResolverInterface $fileResolver * @param \Magento\Eav\Model\Entity\Attribute\Config\Converter $converter * @param \Magento\Eav\Model\Entity\Attribute\Config\SchemaLocator $schemaLocator * @param \Magento\Framework\Config\ValidationStateInterface $validationState * @codeCoverageIgnore */ public function __construct( \Magento\Framework\Config\FileResolverInterface $fileResolver, \Magento\Eav\Model\Entity\Attribute\Config\Converter $converter, \Magento\Eav\Model\Entity\Attribute\Config\SchemaLocator $schemaLocator, \Magento\Framework\Config\ValidationStateInterface $validationState ) { parent::__construct( $fileResolver, $converter, $schemaLocator, $validationState, 'eav_attributes.xml', [] ); } }