Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
CacheDisableCommand.php
Go to the documentation of this file.
1 <?php
8 
16 {
20  protected function configure()
21  {
22  $this->setName('cache:disable');
23  $this->setDescription('Disables cache type(s)');
24  parent::configure();
25  }
26 
32  protected function isEnable()
33  {
34  return false;
35  }
36 }