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
framework
Setup
Test
Unit
_files
schema_patch_classes.php
Go to the documentation of this file.
1
<?php
7
// @codingStandardsIgnoreFile - as of namespace absence
8
9
class
OtherSchemaPatch
implements
\Magento\Framework\Setup\Patch\SchemaPatchInterface
10
{
14
public
static
function
getDependencies
()
15
{
16
return
[];
17
}
18
22
public
function
getAliases
()
23
{
24
return
[];
25
}
26
30
public
function
apply
()
31
{
32
}
33
}
34
35
class
SomeSchemaPatch
implements
36
\Magento\Framework\Setup\Patch\SchemaPatchInterface
,
37
\Magento\Framework\Setup\Patch\PatchVersionInterface
38
{
42
public
static
function
getDependencies
()
43
{
44
return
[
45
OtherDataPatch::class,
46
];
47
}
48
52
public
function
getAliases
()
53
{
54
return
[];
55
}
56
60
public
function
apply
()
61
{
62
return
$this;
63
}
64
68
public
static
function
getVersion
()
69
{
70
return
'2.0.0'
;
71
}
72
}
OtherSchemaPatch\getAliases
getAliases()
Definition:
schema_patch_classes.php:22
SomeSchemaPatch\getAliases
getAliases()
Definition:
schema_patch_classes.php:52
SomeSchemaPatch\getDependencies
static getDependencies()
Definition:
schema_patch_classes.php:42
SomeSchemaPatch\apply
apply()
Definition:
schema_patch_classes.php:60
OtherSchemaPatch\apply
apply()
Definition:
schema_patch_classes.php:30
SomeSchemaPatch
Definition:
schema_patch_classes.php:35
Magento\Framework\Setup\Patch\SchemaPatchInterface
Definition:
SchemaPatchInterface.php:12
OtherSchemaPatch
Definition:
schema_patch_classes.php:9
Magento\Framework\Setup\Patch\PatchVersionInterface
Definition:
PatchVersionInterface.php:13
OtherSchemaPatch\getDependencies
static getDependencies()
Definition:
schema_patch_classes.php:14
SomeSchemaPatch\getVersion
static getVersion()
Definition:
schema_patch_classes.php:68