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
magento-composer-installer
src
MagentoHackathon
Composer
Magerun
DeployCommand.php
Go to the documentation of this file.
1
<?php
2
3
namespace
MagentoHackathon\Composer\Magerun
;
4
5
use N98\Magento\Command\AbstractMagentoCommand;
6
use Symfony\Component\Console\Input\InputInterface;
7
use Symfony\Component\Console\Output\OutputInterface;
8
9
class
DeployCommand
extends
AbstractMagentoCommand
10
{
11
protected
function
configure
()
12
{
13
$this
14
->setName(
'composer:magento:deploy'
)
15
->setDescription(
'Test command registered in a module'
)
16
;
17
}
18
24
protected
function
execute
(InputInterface $input, OutputInterface
$output
)
25
{
26
27
$output
->writeln(
'it works, maybe'
);
28
}
29
}
MagentoHackathon\Composer\Magerun\DeployCommand\execute
execute(InputInterface $input, OutputInterface $output)
Definition:
DeployCommand.php:24
MagentoHackathon\Composer\Magerun\DeployCommand
Definition:
DeployCommand.php:9
MagentoHackathon\Composer\Magerun
Definition:
DeployCommand.php:3
MagentoHackathon\Composer\Magerun\DeployCommand\configure
configure()
Definition:
DeployCommand.php:11
$output
$output
Definition:
classmap_generator.php:100