We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 08cf194 + 181861e commit eeee9f6Copy full SHA for eeee9f6
components/ldap.rst
@@ -155,10 +155,10 @@ method to update multiple attributes at once::
155
156
$entryManager = $ldap->getEntryManager();
157
158
- // Adding multiple email adresses at once
+ // Adding multiple email addresses at once
159
$entryManager->applyOperations($entry->getDn(), array(
160
- new UpdateOpteration(LDAP_MODIFY_BATCH_ADD, 'mail', 'new1@example.com'),
161
- new UpdateOpteration(LDAP_MODIFY_BATCH_ADD, 'mail', 'new2@example.com'),
+ new UpdateOperation(LDAP_MODIFY_BATCH_ADD, 'mail', 'new1@example.com'),
+ new UpdateOperation(LDAP_MODIFY_BATCH_ADD, 'mail', 'new2@example.com'),
162
));
163
164
Possible operation types are ``LDAP_MODIFY_BATCH_ADD``, ``LDAP_MODIFY_BATCH_REMOVE``,
0 commit comments