Skip to content

Commit d759867

Browse files
committed
Code clean
1 parent b691d84 commit d759867

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

app/code/Magento/CustomerGraphQl/Model/Resolver/Customer/CustomerDataProvider.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,8 @@ private function processCustomer(CustomerInterface $customerObject): array
132132
}
133133

134134
/**
135+
* Checking if password for customer is correct
136+
*
135137
* @param string $password
136138
* @param int $customerId
137139
* @return bool
@@ -143,3 +145,4 @@ public function isPasswordCorrect(string $password, int $customerId)
143145
return $this->encryptor->validateHash($password, $hash);
144146
}
145147
}
148+

app/code/Magento/CustomerGraphQl/Model/Resolver/CustomerUpdate.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
use Magento\Framework\GraphQl\Query\ResolverInterface;
2020

2121
/**
22-
* Customers field resolver, used for GraphQL request processing.
22+
* Customers Update resolver
2323
*/
2424
class CustomerUpdate implements ResolverInterface
2525
{

0 commit comments

Comments
 (0)