Skip to content

Commit 149cd33

Browse files
ENGCOM-5447: magento/magento2#: Fix storeId param type in the EmailNotification::newAccount, EmailNotificationInterface::newAccount methods #23666
- Merge Pull Request #23666 from atwixfirster/magento2:emailNotificationInterface-fix-newAccount-param-type - Merged commits: 1. 10d4911
2 parents 5911255 + 10d4911 commit 149cd33

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/code/Magento/Customer/Model/EmailNotification.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ public function passwordResetConfirmation(CustomerInterface $customer)
362362
* @param CustomerInterface $customer
363363
* @param string $type
364364
* @param string $backUrl
365-
* @param string $storeId
365+
* @param int $storeId
366366
* @param string $sendemailStoreId
367367
* @return void
368368
* @throws LocalizedException

app/code/Magento/Customer/Model/EmailNotificationInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public function passwordResetConfirmation(CustomerInterface $customer);
7373
* @param CustomerInterface $customer
7474
* @param string $type
7575
* @param string $backUrl
76-
* @param string $storeId
76+
* @param int $storeId
7777
* @param string $sendemailStoreId
7878
* @return void
7979
* @throws LocalizedException

0 commit comments

Comments
 (0)