Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
module-backend
Console
Command
CacheDisableCommand.php
Go to the documentation of this file.
1
<?php
7
namespace
Magento\Backend\Console\Command
;
8
15
class
CacheDisableCommand
extends
AbstractCacheSetCommand
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
}
Magento\Backend\Console\Command\CacheDisableCommand
Definition:
CacheDisableCommand.php:15
Magento\Backend\Console\Command\CacheDisableCommand\isEnable
isEnable()
Definition:
CacheDisableCommand.php:32
Magento\Backend\Console\Command\AbstractCacheSetCommand
Definition:
AbstractCacheSetCommand.php:16
Magento\Backend\Console\Command\CacheDisableCommand\configure
configure()
Definition:
CacheDisableCommand.php:20
Magento\Backend\Console\Command
Definition:
AbstractCacheCommand.php:7