Skip to content

Commit

Permalink
Code clean
Browse files Browse the repository at this point in the history
  • Loading branch information
nuzil committed Sep 14, 2018
1 parent b691d84 commit d759867
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,8 @@ private function processCustomer(CustomerInterface $customerObject): array
}

/**
* Checking if password for customer is correct
*
* @param string $password
* @param int $customerId
* @return bool
Expand All @@ -143,3 +145,4 @@ public function isPasswordCorrect(string $password, int $customerId)
return $this->encryptor->validateHash($password, $hash);
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
use Magento\Framework\GraphQl\Query\ResolverInterface;

/**
* Customers field resolver, used for GraphQL request processing.
* Customers Update resolver
*/
class CustomerUpdate implements ResolverInterface
{
Expand Down

0 comments on commit d759867

Please sign in to comment.