Skip to content

Commit 3a3e6d0

Browse files
committed
MC-33706: Merge 2.4-develop into 2.4-develop-php74
1 parent c7fefd5 commit 3a3e6d0

File tree

6 files changed

+14
-12
lines changed

6 files changed

+14
-12
lines changed

app/code/Magento/Catalog/Test/Unit/Model/ProductRepositoryTest.php

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -302,11 +302,9 @@ protected function setUp(): void
302302
$this->serializerMock->expects($this->any())
303303
->method('unserialize')
304304
->willReturnCallback(
305-
306-
function ($value) {
307-
return json_decode($value, true);
308-
}
309-
305+
function ($value) {
306+
return json_decode($value, true);
307+
}
310308
);
311309

312310
$mediaProcessor = $this->objectManager->getObject(
@@ -348,7 +346,9 @@ function ($value) {
348346
public function testGetAbsentProduct()
349347
{
350348
$this->expectException(\Magento\Framework\Exception\NoSuchEntityException::class);
351-
$this->expectExceptionMessage('The product that was requested doesn\'t exist. Verify the product and try again.');
349+
$this->expectExceptionMessage(
350+
'The product that was requested doesn\'t exist. Verify the product and try again.'
351+
);
352352

353353
$this->productFactory->expects($this->once())->method('create')
354354
->willReturn($this->product);
@@ -415,7 +415,9 @@ public function testGetWithSetStoreId()
415415
public function testGetByIdAbsentProduct()
416416
{
417417
$this->expectException(\Magento\Framework\Exception\NoSuchEntityException::class);
418-
$this->expectExceptionMessage('The product that was requested doesn\'t exist. Verify the product and try again.');
418+
$this->expectExceptionMessage(
419+
'The product that was requested doesn\'t exist. Verify the product and try again.'
420+
);
419421

420422
$this->productFactory->expects($this->once())->method('create')
421423
->willReturn($this->product);

app/code/Magento/MediaContent/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "magento/module-media-content",
33
"description": "Magento module provides the implementation for managing relations between content and media files used in that content",
44
"require": {
5-
"php": "~7.1.3||~7.2.0||~7.3.0",
5+
"php": "~7.3.0||~7.4.0",
66
"magento/framework": "*",
77
"magento/module-media-content-api": "*",
88
"magento/module-media-gallery-api": "*"

app/code/Magento/MediaContentApi/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "magento/module-media-content-api",
33
"description": "Magento module provides the API interfaces for managing relations between content and media files used in that content",
44
"require": {
5-
"php": "~7.1.3||~7.2.0||~7.3.0",
5+
"php": "~7.3.0||~7.4.0",
66
"magento/module-media-gallery-api": "*",
77
"magento/framework": "*"
88
},

app/code/Magento/MediaContentCatalog/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "magento/module-media-content-catalog",
33
"description": "Magento module provides the implementation of MediaContent functionality for Magento_Catalog module",
44
"require": {
5-
"php": "~7.1.3||~7.2.0||~7.3.0",
5+
"php": "~7.3.0||~7.4.0",
66
"magento/module-media-content-api": "*",
77
"magento/module-catalog": "*",
88
"magento/framework": "*"

app/code/Magento/MediaContentCms/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "magento/module-media-content-cms",
33
"description": "Magento module provides the implementation of MediaContent functionality for Magento_Cms module",
44
"require": {
5-
"php": "~7.1.3||~7.2.0||~7.3.0",
5+
"php": "~7.3.0||~7.4.0",
66
"magento/module-media-content-api": "*",
77
"magento/module-cms": "*",
88
"magento/framework": "*"

app/code/Magento/MediaGalleryCatalog/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "magento/module-media-gallery-catalog",
33
"description": "Magento module responsible for catalog gallery processor delete operation handling",
44
"require": {
5-
"php": "~7.1.3||~7.2.0||~7.3.0",
5+
"php": "~7.3.0||~7.4.0",
66
"magento/framework": "*",
77
"magento/module-media-gallery-api": "*",
88
"magento/module-catalog": "*"

0 commit comments

Comments
 (0)