Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. public function __construct(
  2. MagentoCustomerApiCustomerRepositoryInterface $customerRepo){
  3. $this->customerRepo = $customerRepo;
  4. }
  5.  
  6. $customer = $this->customerRepo->getById('your customer id');
  7. if($customer){
  8. //process your code
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement