|
2 | 2 |
|
3 | 3 | namespace Laminas\Ldap; |
4 | 4 |
|
5 | | -use Laminas\Ldap\Collection; |
6 | | -use Laminas\Ldap\Exception; |
7 | 5 | use LDAP\Connection; |
8 | 6 | use Traversable; |
9 | 7 |
|
@@ -179,7 +177,6 @@ public function getLastErrorCode() |
179 | 177 | * Return the LDAP error message of the last LDAP command |
180 | 178 | * |
181 | 179 | * @param int $errorCode |
182 | | - * @param array $errorMessages |
183 | 180 | * @return string |
184 | 181 | */ |
185 | 182 | public function getLastError(&$errorCode = null, ?array &$errorMessages = null) |
@@ -1096,7 +1093,6 @@ protected function reconnectSleep() |
1096 | 1093 | * @param string|Filter\AbstractFilter|array $filter |
1097 | 1094 | * @param string|Dn|null $basedn |
1098 | 1095 | * @param int $scope |
1099 | | - * @param array $attributes |
1100 | 1096 | * @param string|null $sort |
1101 | 1097 | * @param string|null $collectionClass |
1102 | 1098 | * @param int $sizelimit |
@@ -1279,7 +1275,6 @@ public function exists($dn) |
1279 | 1275 | * @param string|Filter\AbstractFilter|array $filter |
1280 | 1276 | * @param string|Dn|null $basedn |
1281 | 1277 | * @param int $scope |
1282 | | - * @param array $attributes |
1283 | 1278 | * @param string|null $sort |
1284 | 1279 | * @param bool $reverseSort |
1285 | 1280 | * @param int $sizelimit |
@@ -1320,7 +1315,6 @@ public function searchEntries( |
1320 | 1315 | * Get LDAP entry by DN |
1321 | 1316 | * |
1322 | 1317 | * @param string|Dn $dn |
1323 | | - * @param array $attributes |
1324 | 1318 | * @param bool $throwOnNotFound |
1325 | 1319 | * @return array |
1326 | 1320 | * @throws null|Exception\LdapException |
@@ -1349,7 +1343,6 @@ public function getEntry($dn, array $attributes = [], $throwOnNotFound = false) |
1349 | 1343 | /** |
1350 | 1344 | * Prepares an ldap data entry array for insert/update operation |
1351 | 1345 | * |
1352 | | - * @param array $entry |
1353 | 1346 | * @throws Exception\InvalidArgumentException |
1354 | 1347 | * @return void |
1355 | 1348 | */ |
@@ -1397,7 +1390,6 @@ public static function prepareLdapEntryArray(array &$entry) |
1397 | 1390 | * Add new information to the LDAP repository |
1398 | 1391 | * |
1399 | 1392 | * @param string|Dn $dn |
1400 | | - * @param array $entry |
1401 | 1393 | * @return Ldap Provides a fluid interface |
1402 | 1394 | * @throws Exception\LdapException |
1403 | 1395 | */ |
@@ -1457,7 +1449,6 @@ public function add($dn, array $entry) |
1457 | 1449 | * Update LDAP registry |
1458 | 1450 | * |
1459 | 1451 | * @param string|Dn $dn |
1460 | | - * @param array $entry |
1461 | 1452 | * @return Ldap Provides a fluid interface |
1462 | 1453 | * @throws Exception\LdapException |
1463 | 1454 | */ |
@@ -1515,7 +1506,6 @@ public function update($dn, array $entry) |
1515 | 1506 | * {@link exists()}. |
1516 | 1507 | * |
1517 | 1508 | * @param string|Dn $dn |
1518 | | - * @param array $entry |
1519 | 1509 | * @return Ldap Provides a fluid interface |
1520 | 1510 | * @throws Exception\LdapException |
1521 | 1511 | */ |
@@ -1573,7 +1563,6 @@ public function delete($dn, $recursively = false) |
1573 | 1563 | * Add one or more attributes to the specified dn |
1574 | 1564 | * |
1575 | 1565 | * @param string|Dn $dn |
1576 | | - * @param array $attributes |
1577 | 1566 | * @param bool $allowEmptyAttributes |
1578 | 1567 | * @return Ldap Provides a fluid interface |
1579 | 1568 | * @throws Exception\LdapException |
@@ -1611,7 +1600,6 @@ public function addAttributes($dn, array $attributes, $allowEmptyAttributes = fa |
1611 | 1600 | * Update one or more attributes to the specified dn |
1612 | 1601 | * |
1613 | 1602 | * @param string|Dn $dn |
1614 | | - * @param array $attributes |
1615 | 1603 | * @param bool $allowEmptyAttributes |
1616 | 1604 | * @return Ldap Provides a fluid interface |
1617 | 1605 | * @throws Exception\LdapException |
|
0 commit comments