/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
setup/src/Magento/Setup/Console/Command/ModuleEnableCommand.php
34 строки
605 B
engcom-Dash
29355: Fix static failure related to copyright tag
08 ноя 2024, 12:36
08 ноя 2024, 12:36
7d4d669
Код
Авторство
О чём код?
<?php /** * Copyright 2015 Adobe * All Rights Reserved. */ namespace Magento\Setup\Console\Command; /** * Command for enabling list or all of modules */ class ModuleEnableCommand extends AbstractModuleManageCommand { public const NAME = 'module:enable'; /** * @inheritdoc */ protected function configure() { $this->setName(self::NAME) ->setDescription('Enables specified modules'); parent::configure(); } /** * Enable modules * * @return bool */ protected function isEnable() { return true; } }