/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
setup/src/Magento/Setup/Console/Command/ModuleDisableCommand.php
34 строки
611 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 disabling list or all of modules */ class ModuleDisableCommand extends AbstractModuleManageCommand { public const NAME = 'module:disable'; /** * @inheritdoc */ protected function configure() { $this->setName(self::NAME) ->setDescription('Disables specified modules'); parent::configure(); } /** * Disable modules * * @return bool */ protected function isEnable() { return false; } }