Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
inactive_customer.php
Go to the documentation of this file.
1 <?php
7  \Magento\Customer\Model\Customer::class
8 );
9 $customer->setWebsiteId(
10  1
11 )->setId(
12  1
13 )->setConfirmation(
14  $customer->getRandomConfirmationKey()
15 )->setEntityTypeId(
16  1
17 )->setAttributeSetId(
18  0
19 )->setEmail(
21 )->setPassword(
22  'password'
23 )->setGroupId(
24  1
25 )->setStoreId(
26  1
27 )->setFirstname(
28  'Firstname'
29 )->setLastname(
30  'Lastname'
31 )->setDefaultBilling(
32  1
33 )->setDefaultShipping(
34  1
35 );
36 $customer->isObjectNew(true);
37 $customer->save();