/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
lib/internal/Magento/Framework/Notification/MessageInterface.php
56 строк
826 B
Alexandra Zota
ACP2E-4019: CE copyright updates for 2.4.9-beta1
22 окт 2025, 17:47
22 окт 2025, 17:47
1b769b7
Код
Авторство
О чём код?
<?php /** * System message * * Copyright 2014 Adobe * All Rights Reserved. */ namespace Magento\Framework\Notification; /** * Interface for system messages * * Interface MessageInterface * * @api * @since 100.0.2 */ interface MessageInterface { const SEVERITY_CRITICAL = 1; const SEVERITY_MAJOR = 2; const SEVERITY_MINOR = 3; const SEVERITY_NOTICE = 4; /** * Retrieve unique message identity * * @return string */ public function getIdentity(); /** * Check whether * * @return bool */ public function isDisplayed(); /** * Retrieve message text * * @return string */ public function getText(); /** * Retrieve message severity * * @return int */ public function getSeverity(); }