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
Aggregate
AggregateParent.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Test\Di\Aggregate
;
7
8
class
AggregateParent
implements
\Magento\Test\Di\Aggregate\AggregateInterface
9
{
10
public
$interface
;
11
12
public
$parent
;
13
14
public
$child
;
15
16
public
$scalar
;
17
18
public
$optionalScalar
;
19
28
public
function
__construct
(
29
\
Magento
\Test\Di\
DiInterface
$interface
,
30
\
Magento
\Test\Di\
DiParent
$parent
,
31
\
Magento
\Test\Di\
Child
$child
,
32
$scalar
,
33
$optionalScalar
= 1
34
) {
35
$this->
interface
= $interface;
36
$this->parent =
$parent
;
37
$this->child =
$child
;
38
$this->scalar =
$scalar
;
39
$this->optionalScalar =
$optionalScalar
;
40
}
41
}
Magento\Test\Di\Aggregate\Child
Definition:
Child.php:8
Magento\Test\Di\Aggregate\AggregateParent\$child
$child
Definition:
AggregateParent.php:14
Magento\Test\Di\DiParent
Definition:
DiParent.php:9
Magento\Test\Di\Aggregate\AggregateParent\$optionalScalar
$optionalScalar
Definition:
AggregateParent.php:18
Magento\Test\Di\Aggregate\AggregateParent
Definition:
AggregateParent.php:8
Magento\Test\Di\Aggregate\AggregateParent\$interface
$interface
Definition:
AggregateParent.php:10
Magento\Test\Di\Aggregate\AggregateParent\__construct
__construct(\Magento\Test\Di\DiInterface $interface, \Magento\Test\Di\DiParent $parent, \Magento\Test\Di\Child $child, $scalar, $optionalScalar=1)
Definition:
AggregateParent.php:28
Magento
Magento\Test\Di\Aggregate\AggregateParent\$parent
$parent
Definition:
AggregateParent.php:12
Magento\Test\Di\Aggregate\AggregateParent\$scalar
$scalar
Definition:
AggregateParent.php:16
Magento\Test\Di\Aggregate
Definition:
AggregateInterface.php:6
Magento\Test\Di\DiInterface
Definition:
DiInterface.php:8
Magento\Test\Di\Aggregate\AggregateInterface
Definition:
AggregateInterface.php:8