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
inventory-composer-installer
src
NoChangesConfigurator.php
Go to the documentation of this file.
1
<?php
6
declare(strict_types=1);
7
8
namespace
Magento\InventoryComposerInstaller
;
9
10
use Composer\IO\IOInterface;
11
12
class
NoChangesConfigurator
implements
InventoryConfiguratorInterface
13
{
17
private
$io;
18
19
public
function
__construct
(IOInterface $io)
20
{
21
$this->io = $io;
22
}
23
24
public
function
configure
(
string
$moduleName): void
25
{
26
$this->io->writeError(sprintf(
27
' ...No special rule applied for %s module'
,
28
$moduleName
29
),
true
);
30
}
31
}
Magento\InventoryComposerInstaller\NoChangesConfigurator
Definition:
NoChangesConfigurator.php:12
Magento\InventoryComposerInstaller\NoChangesConfigurator\__construct
__construct(IOInterface $io)
Definition:
NoChangesConfigurator.php:19
Magento\InventoryComposerInstaller\InventoryConfiguratorInterface
Definition:
InventoryConfiguratorInterface.php:13
Magento\InventoryComposerInstaller
Definition:
DisabledInventoryConfiguration.php:8
Magento\InventoryComposerInstaller\NoChangesConfigurator\configure
configure(string $moduleName)
Definition:
NoChangesConfigurator.php:24