/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
lib/internal/Magento/Framework/Setup/Mvc/MvcEvent.php
42 строки
793 B
Rajesh Kumar
AC-15068::Laminas MVC Retiring
02 сен 2025, 12:22
02 сен 2025, 12:22
26d63bf
Код
Авторство
О чём код?
<?php /** * Copyright 2025 Adobe * All Rights Reserved. */ declare(strict_types=1); namespace Magento\Framework\Setup\Mvc; /** * Native MvcEvent class. * Magento setup commands without requiring Laminas mvc dependencies */ class MvcEvent { public const EVENT_BOOTSTRAP = 'bootstrap'; /** * @var MvcApplication */ private MvcApplication $application; /** * Set application * * @param MvcApplication $application * @return void */ public function setApplication(MvcApplication $application): void { $this->application = $application; } /** * Get application * * @return MvcApplication */ public function getApplication(): MvcApplication { return $this->application; } }