Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ModuleDisableCommand.php
Go to the documentation of this file.
1 <?php
7 
12 {
16  protected function configure()
17  {
18  $this->setName('module:disable')
19  ->setDescription('Disables specified modules');
20  parent::configure();
21  }
22 
28  protected function isEnable()
29  {
30  return false;
31  }
32 }