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
dev
tests
integration
testsuite
Magento
Framework
Interception
Fixture
Intercepted.php
Go to the documentation of this file.
1
<?php
8
namespace
Magento\Framework\Interception\Fixture
;
9
13
class
Intercepted
extends
InterceptedParent
implements
InterceptedInterface
14
{
15
protected
$_key
;
16
20
public
function
A
($param1)
21
{
22
$this->_key = $param1;
23
return
$this;
24
}
25
29
public
function
B
($param1, $param2)
30
{
31
return
'<B>'
. $param1 . $param2 . $this->
C
($param1) .
'</B>'
;
32
}
33
37
public
function
C
($param1)
38
{
39
return
'<C>'
. $param1 .
'</C>'
;
40
}
41
45
public
function
D
($param1)
46
{
47
return
'<D>'
. $this->_key . $param1 .
'</D>'
;
48
}
49
54
final
public
function
E
($param1)
55
{
56
return
'<E>'
. $this->_key . $param1 .
'</E>'
;
57
}
58
62
public
function
F
($param1)
63
{
64
return
'<F>'
. $param1 .
'</F>'
;
65
}
66
70
public
function
G
($param1)
71
{
72
return
'<G>'
. $param1 .
"</G>"
;
73
}
74
78
public
function
K
($param1)
79
{
80
return
'<K>'
. $param1 .
'</K>'
;
81
}
82
86
public
function
V
($param1)
87
{
88
return
'<V>'
. $param1 .
'</V>'
;
89
}
90
94
public
function
W
($param1)
95
{
96
return
'<W>'
. $param1 .
'</W>'
;
97
}
98
102
public
function
X
($param1)
103
{
104
return
'<X>'
. $param1 .
'</X>'
;
105
}
106
110
public
function
Y
($param1)
111
{
112
return
'<Y>'
. $param1 .
'</Y>'
;
113
}
114
118
public
function
Z
($param1)
119
{
120
return
'<Z>'
. $param1 .
'</Z>'
;
121
}
122
}
Magento\Framework\Interception\Fixture
Magento\Framework\Interception\Fixture\Intercepted\K
K($param1)
Definition:
Intercepted.php:78
Magento\Framework\Interception\Fixture\Intercepted\F
F($param1)
Definition:
Intercepted.php:62
Magento\Framework\Interception\Fixture\Intercepted\W
W($param1)
Definition:
Intercepted.php:94
Magento\Framework\Interception\Fixture\Intercepted\D
D($param1)
Definition:
Intercepted.php:45
Magento\Framework\Interception\Fixture\Intercepted\X
X($param1)
Definition:
Intercepted.php:102
Magento\Framework\Interception\Fixture\Intercepted\B
B($param1, $param2)
Definition:
Intercepted.php:29
Magento\Framework\Interception\Fixture\Intercepted\C
C($param1)
Definition:
Intercepted.php:37
Magento\Framework\Interception\Fixture\Intercepted\Y
Y($param1)
Definition:
Intercepted.php:110
Magento\Framework\Interception\Fixture\Intercepted\V
V($param1)
Definition:
Intercepted.php:86
Magento\Framework\Interception\Fixture\InterceptedInterface
Definition:
InterceptedInterface.php:13
Magento\Framework\Interception\Fixture\Intercepted\A
A($param1)
Definition:
Intercepted.php:20
Magento\Framework\Interception\Fixture\Intercepted\$_key
$_key
Definition:
Intercepted.php:15
Magento\Framework\Interception\Fixture\Intercepted
Definition:
Intercepted.php:13
Magento\Framework\Interception\Fixture\InterceptedParent
Definition:
InterceptedParent.php:13
Magento\Framework\Interception\Fixture\Intercepted\G
G($param1)
Definition:
Intercepted.php:70
Magento\Framework\Interception\Fixture\Intercepted\E
E($param1)
Definition:
Intercepted.php:54
Magento\Framework\Interception\Fixture\Intercepted\Z
Z($param1)
Definition:
Intercepted.php:118