Skip to content

Commit 0b9bbd8

Browse files
ENGCOM-3980: Assign with and, or, replaced by &&, || #20628
- Merge Pull Request #20628 from lfluvisotto/magento2:2.3-develop-assign-with-or - Merged commits: 1. e78576e 2. 0a4a1e1 3. 6c2d7d9
2 parents 42f315f + 6c2d7d9 commit 0b9bbd8

File tree

6 files changed

+12
-4
lines changed

6 files changed

+12
-4
lines changed

app/code/Magento/Paypal/Controller/Transparent/RequestSecureToken.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,8 @@ public function execute()
107107
}
108108

109109
/**
110+
* Get error response.
111+
*
110112
* @return Json
111113
*/
112114
private function getErrorResponse()

app/code/Magento/Security/Model/SecurityChecker/Quantity.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public function __construct(
4848
}
4949

5050
/**
51-
* {@inheritdoc}
51+
* @inheritdoc
5252
*/
5353
public function check($securityEventType, $accountReference = null, $longIp = null)
5454
{

app/code/Magento/SendFriend/Model/SendFriend.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
* @method \Magento\SendFriend\Model\SendFriend setTime(int $value)
1717
*
1818
* @author Magento Core Team <core@magentocommerce.com>
19+
* @SuppressWarnings(PHPMD.CookieAndSessionMisuse)
1920
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
2021
*
2122
* @api
@@ -162,6 +163,8 @@ protected function _construct()
162163
}
163164

164165
/**
166+
* Send email.
167+
*
165168
* @return $this
166169
* @throws CoreException
167170
*/

app/code/Magento/Tax/Model/Sales/Total/Quote/Tax.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -408,6 +408,7 @@ protected function enhanceTotalData(
408408

409409
/**
410410
* Process model configuration array.
411+
*
411412
* This method can be used for changing totals collect sort order
412413
*
413414
* @param array $config

lib/internal/Magento/Framework/Message/Manager.php

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

1212
/**
1313
* Message manager model
14+
*
15+
* @SuppressWarnings(PHPMD.CookieAndSessionMisuse)
1416
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
1517
*/
1618
class Manager implements ManagerInterface

setup/src/Magento/Setup/Model/ConfigOptionsList/Session.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ class Session implements ConfigOptionsListInterface
139139
];
140140

141141
/**
142-
* {@inheritdoc}
142+
* @inheritdoc
143143
* @SuppressWarnings(PHPMD.ExcessiveMethodLength)
144144
*/
145145
public function getOptions()
@@ -289,7 +289,7 @@ public function getOptions()
289289
}
290290

291291
/**
292-
* {@inheritdoc}
292+
* @inheritdoc
293293
*/
294294
public function createConfig(array $options, DeploymentConfig $deploymentConfig)
295295
{
@@ -320,7 +320,7 @@ public function createConfig(array $options, DeploymentConfig $deploymentConfig)
320320
}
321321

322322
/**
323-
* {@inheritdoc}
323+
* @inheritdoc
324324
*/
325325
public function validate(array $options, DeploymentConfig $deploymentConfig)
326326
{

0 commit comments

Comments
 (0)