Skip to content

Commit 7aeb3be

Browse files
committed
fix tests
1 parent 1b5f7c5 commit 7aeb3be

File tree

5 files changed

+19
-19
lines changed

5 files changed

+19
-19
lines changed

app/code/Magento/ReleaseNotification/Ui/DataProvider/NotificationDataProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ public function setConfigData($config)
147147

148148
/**
149149
* Get Field Meta Info
150-
*
150+
*
151151
* @param string $fieldSetName
152152
* @param string $fieldName
153153
*

app/code/Magento/Sales/Model/Order/Address.php

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -544,9 +544,9 @@ public function setRegionId($id)
544544
}
545545

546546
/**
547-
* Sets the customer ID for the order address.
547+
* Sets the street values, if any, for the order address.
548548
*
549-
* @param int $id
549+
* @param string|string[] $street
550550
*
551551
* @return \Magento\Framework\DataObject|Address
552552
*/
@@ -556,9 +556,9 @@ public function setStreet($street)
556556
}
557557

558558
/**
559-
* Sets the fax number for the order address.
559+
* Sets the customer ID for the order address.
560560
*
561-
* @param string $fax
561+
* @param int $id
562562
*
563563
* @return \Magento\Framework\DataObject|Address
564564
*/
@@ -568,9 +568,9 @@ public function setCustomerId($id)
568568
}
569569

570570
/**
571-
* Sets the region for the order address.
571+
* Sets the fax number for the order address.
572572
*
573-
* @param string $region
573+
* @param string $fax
574574
*
575575
* @return \Magento\Framework\DataObject|Address
576576
*/
@@ -580,9 +580,9 @@ public function setFax($fax)
580580
}
581581

582582
/**
583-
* Sets the postal code for the order address.
583+
* Sets the region for the order address.
584584
*
585-
* @param string $postcode
585+
* @param string $region
586586
*
587587
* @return \Magento\Framework\DataObject|Address
588588
*/
@@ -592,9 +592,9 @@ public function setRegion($region)
592592
}
593593

594594
/**
595-
* Sets the last name for the order address.
595+
* Sets the postal code for the order address.
596596
*
597-
* @param string $lastname
597+
* @param string $postcode
598598
*
599599
* @return \Magento\Framework\DataObject|Address
600600
*/
@@ -604,9 +604,9 @@ public function setPostcode($postcode)
604604
}
605605

606606
/**
607-
* Sets the street values, if any, for the order address.
607+
* Sets the last name for the order address.
608608
*
609-
* @param string|string[] $street
609+
* @param string $lastname
610610
*
611611
* @return \Magento\Framework\DataObject|Address
612612
*/

app/code/Magento/Sales/Model/Order/Payment/Transaction.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -994,9 +994,9 @@ public function setPaymentId($id)
994994
}
995995

996996
/**
997-
* Sets the parent transaction business ID for the transaction.
997+
* Sets the value of the is-closed flag for the transaction.
998998
*
999-
* @param string $id
999+
* @param int $isClosed
10001000
*
10011001
* @return TransactionInterface|Transaction
10021002
*/

app/code/Magento/Store/Model/Store.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1380,7 +1380,7 @@ public function getStorePath()
13801380
/**
13811381
* Get scope type
13821382
*
1383-
* {@inheritdoc}
1383+
* @return string
13841384
* @since 100.1.0
13851385
*/
13861386
public function getScopeType()
@@ -1391,7 +1391,7 @@ public function getScopeType()
13911391
/**
13921392
* Get Scope Type Name
13931393
*
1394-
* {@inheritdoc}
1394+
* @return string
13951395
* @since 100.1.0
13961396
*/
13971397
public function getScopeTypeName()
@@ -1402,7 +1402,7 @@ public function getScopeTypeName()
14021402
/**
14031403
* Retrieve existing extension attributes object or create a new one.
14041404
*
1405-
* {@inheritdoc}
1405+
* @return \Magento\Store\Api\Data\StoreExtensionInterface|null
14061406
*/
14071407
public function getExtensionAttributes()
14081408
{

app/code/Magento/Widget/Model/ResourceModel/Layout/Update.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ protected function _construct()
5050
*
5151
* @param string $handle
5252
* @param \Magento\Framework\View\Design\ThemeInterface $theme
53-
* @param \Magento\Framework\App\ScopeInterface store
53+
* @param \Magento\Framework\App\ScopeInterface $store
5454
*
5555
* @return string
5656
* @throws \Magento\Framework\Exception\LocalizedException

0 commit comments

Comments
 (0)