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
App
RequestFactory.php
Go to the documentation of this file.
1
<?php
8
namespace
Magento\Framework\App
;
9
10
class
RequestFactory
11
{
15
protected
$objectManager
;
16
20
public
function
__construct
(\
Magento
\Framework\
ObjectManagerInterface
$objectManager
)
21
{
22
$this->objectManager =
$objectManager
;
23
}
24
31
public
function
create
(array
$arguments
= [])
32
{
33
return
$this->objectManager->create(\
Magento
\Framework\
App
\RequestInterface::class,
$arguments
);
34
}
35
}
Magento\Framework\App
Magento\Framework\App\RequestFactory\$objectManager
$objectManager
Definition:
RequestFactory.php:15
Magento\Framework\ObjectManagerInterface
Definition:
ObjectManagerInterface.php:12
Magento\Framework\App\RequestFactory\create
create(array $arguments=[])
Definition:
RequestFactory.php:31
Magento
Magento\Framework\App\RequestFactory\__construct
__construct(\Magento\Framework\ObjectManagerInterface $objectManager)
Definition:
RequestFactory.php:20
$arguments
$arguments
Definition:
final_price.phtml:24
Magento\Framework\App\RequestFactory
Definition:
RequestFactory.php:10