Skip to content

Commit 5eccf70

Browse files
committed
Merge branch 'AC-13306' of github.com:magento-gl/magento2ce into AC-13306
2 parents 1bbaaa3 + 2029d59 commit 5eccf70

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-4
lines changed

app/code/Magento/AwsS3/Driver/AwsS3Factory.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121

2222
/**
2323
* Creates a pre-configured instance of AWS S3 driver.
24+
*
25+
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
2426
*/
2527
class AwsS3Factory implements DriverFactoryInterface
2628
{

app/code/Magento/Catalog/Helper/Data.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
*
2222
* @SuppressWarnings(PHPMD.TooManyFields)
2323
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
24+
* @SuppressWarnings(PHPMD.CookieAndSessionMisuse)
2425
* @since 100.0.2
2526
*/
2627
class Data extends \Magento\Framework\App\Helper\AbstractHelper

app/code/Magento/Catalog/Model/Design.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
*
2828
* @since 100.0.2
2929
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
30+
* @SuppressWarnings(PHPMD.CookieAndSessionMisuse)
3031
*/
3132
class Design extends \Magento\Framework\Model\AbstractModel
3233
{

app/code/Magento/Catalog/Model/Product/Compare/Item.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
* @method int getStoreId()
1919
* @method \Magento\Catalog\Model\Product\Compare\Item setStoreId(int $value)
2020
* @since 100.0.2
21+
* @SuppressWarnings(PHPMD.CookieAndSessionMisuse)
2122
*/
2223
class Item extends \Magento\Framework\Model\AbstractModel implements \Magento\Framework\DataObject\IdentityInterface
2324
{

app/code/Magento/Email/Controller/Adminhtml/Email/Template/DefaultTemplate.php

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
<?php
22
/**
3-
*
4-
* Copyright © Magento, Inc. All rights reserved.
5-
* See COPYING.txt for license details.
3+
* Copyright 2011 Adobe
4+
* All Rights Reserved.
65
*/
76
namespace Magento\Email\Controller\Adminhtml\Email\Template;
87

9-
class DefaultTemplate extends \Magento\Email\Controller\Adminhtml\Email\Template
8+
use Magento\Framework\App\Action\HttpGetActionInterface;
9+
10+
/**
11+
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
12+
*/
13+
class DefaultTemplate extends \Magento\Email\Controller\Adminhtml\Email\Template implements HttpGetActionInterface
1014
{
1115
/**
1216
* @var \Magento\Email\Model\Template\Config

0 commit comments

Comments
 (0)