/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
setup/src/Magento/Setup/Module/Dependency/Report/WriterInterface.php
23 строки
488 B
Alexandra Zota
ACP2E-4019: CE copyright updates for 2.4.9-beta1
22 окт 2025, 11:23
22 окт 2025, 11:23
6c2f6e6
Код
Авторство
О чём код?
<?php /** * Copyright 2015 Adobe * All Rights Reserved. */ namespace Magento\Setup\Module\Dependency\Report; use Magento\Setup\Module\Dependency\Report\Data\ConfigInterface; /** * Writer Interface */ interface WriterInterface { /** * Write a report file * * @param array $options * @param \Magento\Setup\Module\Dependency\Report\Data\ConfigInterface $config * @return void */ public function write(array $options, ConfigInterface $config); }