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-amqp
Setup
Recurring.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Amqp\Setup
;
7
8
use
Magento\Framework\Amqp\TopologyInstaller
;
9
use
Magento\Framework\Setup\InstallSchemaInterface
;
10
use
Magento\Framework\Setup\ModuleContextInterface
;
11
use
Magento\Framework\Setup\SchemaSetupInterface
;
12
16
class
Recurring
implements
InstallSchemaInterface
17
{
21
protected
$topologyInstaller
;
22
26
public
function
__construct
(
TopologyInstaller
$topologyInstaller
)
27
{
28
$this->topologyInstaller =
$topologyInstaller
;
29
}
30
34
public
function
install
(
SchemaSetupInterface
$setup
,
ModuleContextInterface
$context)
35
{
36
$this->topologyInstaller->install();
37
}
38
}
Magento\Framework\Setup\ModuleContextInterface
Definition:
ModuleContextInterface.php:13
Magento\Framework\Setup\SchemaSetupInterface
Definition:
SchemaSetupInterface.php:13
Magento\Amqp\Setup\Recurring\__construct
__construct(TopologyInstaller $topologyInstaller)
Definition:
Recurring.php:26
Magento\Amqp\Setup\Recurring\install
install(SchemaSetupInterface $setup, ModuleContextInterface $context)
Definition:
Recurring.php:34
Magento\Amqp\Setup\Recurring\$topologyInstaller
$topologyInstaller
Definition:
Recurring.php:21
Magento\Framework\Amqp\TopologyInstaller
Definition:
TopologyInstaller.php:15
Magento\Amqp\Setup
Definition:
ConfigOptionsList.php:6
Magento\Amqp\Setup\Recurring
Definition:
Recurring.php:16
$setup
$setup
Definition:
trigger.php:12
Magento\Framework\Setup\InstallSchemaInterface
Definition:
InstallSchemaInterface.php:14