/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
lib/internal/Magento/Framework/App/DeploymentConfig/ImporterInterface.php
36 строк
1 KB
Alexandra Zota
ACP2E-4019: CE copyright updates for 2.4.9-beta1
22 окт 2025, 17:47
22 окт 2025, 17:47
1b769b7
Код
Авторство
О чём код?
<?php /** * Copyright 2017 Adobe * All Rights Reserved. */ declare(strict_types=1); namespace Magento\Framework\App\DeploymentConfig; use Magento\Framework\Exception\State\InvalidTransitionException; /** * Interface for importers which import data from shared configuration files to appropriate data storage. * * @api */ interface ImporterInterface { /** * Imports data from shared configuration files to appropriate data storage. * * @param array $data Data that should be imported * @return string[] The array of messages that generated during importing * @throws InvalidTransitionException In case of errors during importing (e.g., cannot save some data). * All changed during importing data is rolled back */ public function import(array $data); /** * Returns array of warning messages that describes what changes could happen during the import. * * @param array $data Data that should be imported * @return string[] The array of warning messages */ public function getWarningMessages(array $data); }