File tree Expand file tree Collapse file tree 1 file changed +2
-9
lines changed
lib/internal/Magento/Framework/ObjectManager/Code/Generator Expand file tree Collapse file tree 1 file changed +2
-9
lines changed Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
- * Proxy generator
4
- *
5
3
* Copyright © Magento, Inc. All rights reserved.
6
4
* See COPYING.txt for license details.
7
5
*/
8
6
declare (strict_types=1 );
9
7
10
8
namespace Magento \Framework \ObjectManager \Code \Generator ;
11
9
12
- /**
13
- * Class Proxy
14
- *
15
- * @package Magento\Framework\ObjectManager\Code\Generator
16
- */
17
10
class Proxy extends \Magento \Framework \Code \Generator \EntityAbstract
18
11
{
19
12
/**
20
13
* Entity type
21
14
*/
22
- const ENTITY_TYPE = 'proxy ' ;
15
+ public const ENTITY_TYPE = 'proxy ' ;
23
16
24
17
/**
25
18
* Marker interface
26
19
*/
27
- const NON_INTERCEPTABLE_INTERFACE = \Magento \Framework \ObjectManager \NoninterceptableInterface::class;
20
+ public const NON_INTERCEPTABLE_INTERFACE = \Magento \Framework \ObjectManager \NoninterceptableInterface::class;
28
21
29
22
/**
30
23
* Returns default result class name
You can’t perform that action at this time.
0 commit comments