File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed
app/code/Magento/Customer/Model Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -513,7 +513,7 @@ public function getAddressCollection()
513
513
/**
514
514
* Customer addresses collection
515
515
*
516
- * @return ResourceModel\Address\Collection
516
+ * @return \Magento\Customer\Model\ ResourceModel\Address\Collection
517
517
* @throws \Magento\Framework\Exception\LocalizedException
518
518
*/
519
519
public function getAddressesCollection ()
@@ -600,7 +600,7 @@ public function hashPassword($password, $salt = true)
600
600
* Validate password with salted hash
601
601
*
602
602
* @param string $password
603
- * @return bool
603
+ * @return boolean
604
604
* @throws \Exception
605
605
*/
606
606
public function validatePassword ($ password )
Original file line number Diff line number Diff line change @@ -52,10 +52,11 @@ define([
52
52
content = '<div class="popup-window" id="' + windowId + '"></div>' ,
53
53
self = this ;
54
54
55
- if ( this . modalLoaded === true
56
- && options
57
- && self . targetElementId
58
- && self . targetElementId === options . targetElementId ) {
55
+ if ( this . modalLoaded === true &&
56
+ options &&
57
+ self . targetElementId &&
58
+ self . targetElementId === options . targetElementId
59
+ ) {
59
60
if ( typeof options . closed !== 'undefined' ) {
60
61
this . modal . modal ( 'option' , 'closed' , options . closed ) ;
61
62
}
You can’t perform that action at this time.
0 commit comments