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()
513513 /**
514514 * Customer addresses collection
515515 *
516- * @return ResourceModel\Address\Collection
516+ * @return \Magento\Customer\Model\ ResourceModel\Address\Collection
517517 * @throws \Magento\Framework\Exception\LocalizedException
518518 */
519519 public function getAddressesCollection ()
@@ -600,7 +600,7 @@ public function hashPassword($password, $salt = true)
600600 * Validate password with salted hash
601601 *
602602 * @param string $password
603- * @return bool
603+ * @return boolean
604604 * @throws \Exception
605605 */
606606 public function validatePassword ($ password )
Original file line number Diff line number Diff line change @@ -52,10 +52,11 @@ define([
5252 content = '<div class="popup-window" id="' + windowId + '"></div>' ,
5353 self = this ;
5454
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+ ) {
5960 if ( typeof options . closed !== 'undefined' ) {
6061 this . modal . modal ( 'option' , 'closed' , options . closed ) ;
6162 }
You can’t perform that action at this time.
0 commit comments