/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
lib/internal/Magento/Framework/Setup/DetailProviderInterface.php
31 строка
704 B
Banvari Lal
AC-14807::Backport Verbose Mode in setup:db:status CLI command
12 июн 2025, 13:15
12 июн 2025, 13:15
8279965
Код
Авторство
О чём код?
<?php /** * Copyright 2025 Adobe * All Rights Reserved. */ declare(strict_types=1); namespace Magento\Framework\Setup; /** * Allows to check whether specific component of database is up to date. * * New way of interaction with database implies that there can be components like: * - Declarative Schema * - Data Patches * - Schema Patches * - In Future (maybe): triggers, stored procedures, etc * * Old way implies, that each module has 2 components: data and schema * * @api */ interface DetailProviderInterface { /** * Retrieve detailed information about validator state and differences found * * @return array */ public function getDetails() : array; }