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
Factory
Fixture
OneScalar.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Framework\ObjectManager\Test\Unit\Factory\Fixture
;
7
11
class
OneScalar
12
{
16
private
$foo;
17
21
public
function
__construct
($foo)
22
{
23
$this->foo = $foo;
24
}
25
29
public
function
getFoo
()
30
{
31
return
$this->foo;
32
}
33
}
Magento\Framework\ObjectManager\Test\Unit\Factory\Fixture\OneScalar\getFoo
getFoo()
Definition:
OneScalar.php:29
Magento\Framework\ObjectManager\Test\Unit\Factory\Fixture
Definition:
CircularOne.php:6
Magento\Framework\ObjectManager\Test\Unit\Factory\Fixture\OneScalar
Definition:
OneScalar.php:11
Magento\Framework\ObjectManager\Test\Unit\Factory\Fixture\OneScalar\__construct
__construct($foo)
Definition:
OneScalar.php:21