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
magento2-base
pub
errors
processorFactory.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Framework\Error
;
7
8
require_once realpath(
__DIR__
) .
'/../../app/bootstrap.php'
;
9
require_once
'processor.php'
;
10
14
class
ProcessorFactory
15
{
21
public
function
createProcessor
()
22
{
23
$objectManagerFactory
=
\Magento\Framework\App\Bootstrap::createObjectManagerFactory
(
BP
, $_SERVER);
24
$objectManager
=
$objectManagerFactory
->create($_SERVER);
25
$response
=
$objectManager
->create(\
Magento
\Framework\
App
\
Response
\Http::class);
26
return
new
Processor
(
$response
);
27
}
28
}
Magento\Framework\App\Response\Http
Definition:
FileFactory.php:7
$response
$response
Definition:
404.php:11
Magento\Framework\App
Magento\Framework\Error\ProcessorFactory
Definition:
processorFactory.php:14
$objectManager
$objectManager
Definition:
bootstrap.php:17
__DIR__
defined('TESTS_BP')||define('TESTS_BP' __DIR__
Definition:
_bootstrap.php:60
Magento\Framework\Error\ProcessorFactory\createProcessor
createProcessor()
Definition:
processorFactory.php:21
Magento\Framework\Error\Processor
Definition:
processor.php:15
Magento\Framework\Error
Definition:
ProcessorTest.php:6
Magento
$objectManagerFactory
$objectManagerFactory
Definition:
health_check.php:14
Magento\Framework\App\Bootstrap\createObjectManagerFactory
static createObjectManagerFactory($rootDir, array $initParams)
Definition:
Bootstrap.php:149
BP
const BP
Definition:
autoload.php:14