Skip to content

Commit e8dce7f

Browse files
committed
Compatibiliy update 2.4.4
1 parent 8584086 commit e8dce7f

File tree

6 files changed

+13
-9
lines changed

6 files changed

+13
-9
lines changed

Block/Adminhtml/Category/Tab/Product.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* @category MageVision
66
* @package MageVision_AdminCategoryProductThumbnail
77
* @author MageVision Team
8-
* @copyright Copyright (c) 2021 MageVision (http://www.magevision.com)
8+
* @copyright Copyright (c) 2022 MageVision (http://www.magevision.com)
99
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
1010
*/
1111
declare(strict_types=1);

Block/Adminhtml/Category/Tab/Product/Grid/Renderer/Image.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* @category MageVision
66
* @package MageVision_AdminCategoryProductThumbnail
77
* @author MageVision Team
8-
* @copyright Copyright (c) 2021 MageVision (http://www.magevision.com)
8+
* @copyright Copyright (c) 2022 MageVision (http://www.magevision.com)
99
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
1010
*/
1111
declare(strict_types=1);
@@ -39,6 +39,7 @@ public function __construct(
3939
$this->imageHelper = $imageHelper;
4040
parent::__construct($context, $data);
4141
}
42+
4243
/**
4344
* Renders grid column
4445
*

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
"description": "Admin Category Product Thumbnail Extension for Magento 2",
44
"keywords": ["Magento 2", "Admin Category", "Product Thumbnail", "Products in Category", "Magento Backend"],
55
"require": {
6-
"php": "~7.1.3||~7.2.0||~7.3.0||~7.4.0",
6+
"php": "~7.1.3||~7.2.0||~7.3.0||~7.4.0||~8.1.0",
77
"magento/framework": "102.0.*||103.0.*",
88
"magento/module-backend": "101.0.*||102.0.*",
99
"magento/module-catalog": "103.0.*||104.0.*"
1010
},
1111
"type": "magento2-module",
12-
"version": "2.3.4",
12+
"version": "2.4.0",
1313
"license": [
1414
"OSL-3.0",
1515
"AFL-3.0"

etc/di.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* @category MageVision
77
* @package MageVision_AdminCategoryProductThumbnail
88
* @author MageVision Team
9-
* @copyright Copyright (c) 2021 MageVision (http://www.magevision.com)
9+
* @copyright Copyright (c) 2022 MageVision (http://www.magevision.com)
1010
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
1111
*/
1212
-->

etc/module.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* @category MageVision
77
* @package MageVision_AdminCategoryProductThumbnail
88
* @author MageVision Team
9-
* @copyright Copyright (c) 2021 MageVision (http://www.magevision.com)
9+
* @copyright Copyright (c) 2022 MageVision (http://www.magevision.com)
1010
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
1111
*/
1212
-->

registration.php

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,14 @@
55
* @category MageVision
66
* @package MageVision_AdminCategoryProductThumbnail
77
* @author MageVision Team
8-
* @copyright Copyright (c) 2021 MageVision (http://www.magevision.com)
8+
* @copyright Copyright (c) 2022 MageVision (http://www.magevision.com)
99
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
1010
*/
11-
\Magento\Framework\Component\ComponentRegistrar::register(
12-
\Magento\Framework\Component\ComponentRegistrar::MODULE,
11+
12+
use Magento\Framework\Component\ComponentRegistrar;
13+
14+
ComponentRegistrar::register(
15+
ComponentRegistrar::MODULE,
1316
'MageVision_AdminCategoryProductThumbnail',
1417
__DIR__
1518
);

0 commit comments

Comments
 (0)