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 99
1010use Magento \Catalog \Model \Product ;
1111use Magento \Framework \Message \MessageInterface ;
12- use Magento \Framework \View \DesignLoader as ViewDesignLoader ;
1312use Magento \Framework \Message \ManagerInterface ;
1413use Magento \Catalog \Block \Product \ImageFactory ;
1514use Magento \Framework \App \AreaList ;
2019 */
2120class DesignLoader
2221{
23- /**
24- * @var DesignLoader
25- */
26- private $ designLoader ;
27-
2822 /**
2923 * @var ManagerInterface
3024 */
31- private ManagerInterface $ messageManager ;
25+ private $ messageManager ;
3226
3327 /**
3428 * Application
3529 *
3630 * @var AreaList
3731 */
38- private AreaList $ areaList ;
32+ private $ areaList ;
3933
4034 /**
4135 * Layout
4236 *
4337 * @var State
4438 */
45- private State $ appState ;
39+ private $ appState ;
4640
4741 /**
48- * @param ViewDesignLoader $designLoader
4942 * @param ManagerInterface $messageManager
5043 * @param AreaList $areaList
5144 * @param State $appState
5245 */
5346 public function __construct (
54- ViewDesignLoader $ designLoader ,
5547 ManagerInterface $ messageManager ,
5648 AreaList $ areaList ,
5749 State $ appState
5850 ) {
59- $ this ->designLoader = $ designLoader ;
6051 $ this ->messageManager = $ messageManager ;
6152 $ this ->areaList = $ areaList ;
6253 $ this ->appState = $ appState ;
You can’t perform that action at this time.
0 commit comments