File tree Expand file tree Collapse file tree 1 file changed +3
-12
lines changed
app/code/Magento/CatalogGraphQl/Plugin Expand file tree Collapse file tree 1 file changed +3
-12
lines changed Original file line number Diff line number Diff line change 9
9
10
10
use Magento \Catalog \Model \Product ;
11
11
use Magento \Framework \Message \MessageInterface ;
12
- use Magento \Framework \View \DesignLoader as ViewDesignLoader ;
13
12
use Magento \Framework \Message \ManagerInterface ;
14
13
use Magento \Catalog \Block \Product \ImageFactory ;
15
14
use Magento \Framework \App \AreaList ;
20
19
*/
21
20
class DesignLoader
22
21
{
23
- /**
24
- * @var DesignLoader
25
- */
26
- private $ designLoader ;
27
-
28
22
/**
29
23
* @var ManagerInterface
30
24
*/
31
- private ManagerInterface $ messageManager ;
25
+ private $ messageManager ;
32
26
33
27
/**
34
28
* Application
35
29
*
36
30
* @var AreaList
37
31
*/
38
- private AreaList $ areaList ;
32
+ private $ areaList ;
39
33
40
34
/**
41
35
* Layout
42
36
*
43
37
* @var State
44
38
*/
45
- private State $ appState ;
39
+ private $ appState ;
46
40
47
41
/**
48
- * @param ViewDesignLoader $designLoader
49
42
* @param ManagerInterface $messageManager
50
43
* @param AreaList $areaList
51
44
* @param State $appState
52
45
*/
53
46
public function __construct (
54
- ViewDesignLoader $ designLoader ,
55
47
ManagerInterface $ messageManager ,
56
48
AreaList $ areaList ,
57
49
State $ appState
58
50
) {
59
- $ this ->designLoader = $ designLoader ;
60
51
$ this ->messageManager = $ messageManager ;
61
52
$ this ->areaList = $ areaList ;
62
53
$ this ->appState = $ appState ;
You can’t perform that action at this time.
0 commit comments