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
ObjectManager
Test
Unit
_files
Child
Interceptor
A.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Test\Di\Child\Interceptor
;
7
8
class
A
9
{
13
protected
$_wrapperSym
;
14
18
public
function
__construct
($wrapperSym =
'A'
)
19
{
20
$this->_wrapperSym = $wrapperSym;
21
}
22
27
public
function
wrapBefore
($param)
28
{
29
return
$this->_wrapperSym . $param .
$this->_wrapperSym
;
30
}
31
36
public
function
wrapAfter
($returnValue)
37
{
38
return
'_'
. $this->_wrapperSym .
'_'
. $returnValue .
'_'
. $this->_wrapperSym .
'_'
;
39
}
40
}
Magento\Test\Di\Child\Interceptor
Definition:
A.php:6
Magento\Test\Di\Child\Interceptor\A\wrapAfter
wrapAfter($returnValue)
Definition:
A.php:36
Magento\Test\Di\Child\Interceptor\A\wrapBefore
wrapBefore($param)
Definition:
A.php:27
Magento\Test\Di\Child\Interceptor\A
Definition:
A.php:8
Magento\Test\Di\Child\Interceptor\A\__construct
__construct($wrapperSym='A')
Definition:
A.php:18
Magento\Test\Di\Child\Interceptor\A\$_wrapperSym
$_wrapperSym
Definition:
A.php:13