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
magento2-base
setup
src
Magento
Setup
Console
Command
AbstractSetupCommand.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Setup\Console\Command
;
7
8
use
Magento\Setup\Mvc\Bootstrap\InitParamListener
;
9
use Symfony\Component\Console\Command\Command;
10
use Symfony\Component\Console\Input\InputOption;
11
16
abstract
class
AbstractSetupCommand
extends
Command
17
{
23
protected
function
configure
()
24
{
25
$this->addOption(
26
InitParamListener::BOOTSTRAP_PARAM
,
27
null
,
28
InputOption::VALUE_REQUIRED,
29
'Add to any command to customize Magento initialization parameters'
. PHP_EOL .
30
'For example: "MAGE_MODE=developer&MAGE_DIRS[base][path]'
.
31
'=/var/www/example.com&MAGE_DIRS[cache][path]=/var/tmp/cache"'
32
);
33
}
34
}
Magento\Setup\Console\Command\AbstractSetupCommand
Definition:
AbstractSetupCommand.php:16
Magento\Setup\Mvc\Bootstrap\InitParamListener\BOOTSTRAP_PARAM
const BOOTSTRAP_PARAM
Definition:
InitParamListener.php:38
Magento\Setup\Mvc\Bootstrap\InitParamListener
Definition:
InitParamListener.php:33
Magento\Setup\Console\Command
Definition:
DependenciesShowFrameworkCommandTest.php:6
Magento\Setup\Console\Command\AbstractSetupCommand\configure
configure()
Definition:
AbstractSetupCommand.php:23