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
DiParent.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Test\Di
;
7
8
require_once
__DIR__
.
'/DiInterface.php'
;
9
class
DiParent
implements
\Magento\Test\Di\DiInterface
10
{
14
protected
$_wrapperSymbol
;
15
19
public
function
__construct
($wrapperSymbol =
'|'
)
20
{
21
$this->_wrapperSymbol = $wrapperSymbol;
22
}
23
28
public
function
wrap
($param)
29
{
30
return
$this->_wrapperSymbol . $param .
$this->_wrapperSymbol
;
31
}
32
}
Magento\Test\Di\DiParent\__construct
__construct($wrapperSymbol='|')
Definition:
DiParent.php:19
__DIR__
defined('TESTS_BP')||define('TESTS_BP' __DIR__
Definition:
_bootstrap.php:60
Magento\Test\Di
Magento\Test\Di\DiParent
Definition:
DiParent.php:9
Magento\Test\Di\DiParent\$_wrapperSymbol
$_wrapperSymbol
Definition:
DiParent.php:14
Magento\Test\Di\DiParent\wrap
wrap($param)
Definition:
DiParent.php:28
Magento\Test\Di\DiInterface
Definition:
DiInterface.php:8