We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cda07e commit fc1027cCopy full SHA for fc1027c
app/code/Magento/Ups/Model/Carrier.php
@@ -797,6 +797,7 @@ private function mapCurrencyCode($code)
797
* @return Result
798
* @SuppressWarnings(PHPMD.CyclomaticComplexity)
799
* @SuppressWarnings(PHPMD.ExcessiveMethodLength)
800
+ * @SuppressWarnings(PHPMD.ElseExpression)
801
*/
802
protected function _parseXmlResponse($xmlResponse)
803
{
app/code/Magento/Ups/Test/Unit/Model/CarrierCollectRatesOptionsTest.php
@@ -274,10 +274,9 @@ public function scopeConfigisSetFlag($path)
274
if (isset($pathMap[$path])) {
275
if ($pathMap[$path]) {
276
return(true);
277
- } else {
278
- return(false);
279
- }
+ }
280
}
+ return(false);
281
282
283
/**
0 commit comments