We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$person = new HighrisePerson($highrise); $person->setFirstName("John"); $person->setLastName("Doe"); $person->addEmailAddress("[email protected]");
$address = new HighriseAddress(); $address->setStreet("165 Test St."); $address->setCity("Glasgow"); $address->setCountry("Scotland"); $address->setZip("GL1"); $person->addAddress($address);
$person->save();
This code doesn't work for me? (If I leave the HighriseAddress out it works)
The text was updated successfully, but these errors were encountered:
any update on this?
Sorry, something went wrong.
I think the example is missing
$address->setLocation('Work');
with that $person saved properly.
No branches or pull requests
$person = new HighrisePerson($highrise);
$person->setFirstName("John");
$person->setLastName("Doe");
$person->addEmailAddress("[email protected]");
$address = new HighriseAddress();
$address->setStreet("165 Test St.");
$address->setCity("Glasgow");
$address->setCountry("Scotland");
$address->setZip("GL1");
$person->addAddress($address);
$person->save();
This code doesn't work for me? (If I leave the HighriseAddress out it works)
The text was updated successfully, but these errors were encountered: