33namespace LdapRecord ;
44
55use LDAP \Connection ;
6+ use LDAP \Result ;
67
78/**
89 * @see https://ldap.com/ldap-oid-reference-guide
@@ -339,7 +340,7 @@ public function getConnection(): ?Connection;
339340 *
340341 * @see http://php.net/manual/en/function.ldap-get-entries.php
341342 *
342- * @param \LDAP\ Result $result
343+ * @param Result $result
343344 */
344345 public function getEntries (mixed $ result ): array ;
345346
@@ -348,7 +349,7 @@ public function getEntries(mixed $result): array;
348349 *
349350 * @see https://www.php.net/manual/en/function.ldap-first-entry.php
350351 *
351- * @param \LDAP\ Result $result
352+ * @param Result $result
352353 */
353354 public function getFirstEntry (mixed $ result ): mixed ;
354355
@@ -357,7 +358,7 @@ public function getFirstEntry(mixed $result): mixed;
357358 *
358359 * @see https://www.php.net/manual/en/function.ldap-next-entry.php
359360 *
360- * @param \LDAP\ Result $entry
361+ * @param Result $entry
361362 */
362363 public function getNextEntry (mixed $ entry ): mixed ;
363364
@@ -366,14 +367,14 @@ public function getNextEntry(mixed $entry): mixed;
366367 *
367368 * @see https://www.php.net/manual/en/function.ldap-get-attributes.php
368369 *
369- * @param \LDAP\ Result $entry
370+ * @param Result $entry
370371 */
371372 public function getAttributes (mixed $ entry ): array |false ;
372373
373374 /**
374375 * Reads all the values of the attribute in the entry in the result.
375376 *
376- * @param \LDAP\ Result $entry
377+ * @param Result $entry
377378 */
378379 public function getValuesLen (mixed $ entry , string $ attribute ): array |false ;
379380
@@ -398,7 +399,7 @@ public function getDetailedError(): ?DetailedError;
398399 *
399400 * @see https://www.php.net/manual/en/function.ldap-count-entries.php
400401 *
401- * @param \LDAP\ Result $result
402+ * @param Result $result
402403 */
403404 public function countEntries (mixed $ result ): int ;
404405
@@ -463,7 +464,7 @@ public function close(): bool;
463464 *
464465 * @see http://php.net/manual/en/function.ldap-search.php
465466 *
466- * @return \LDAP\ Result
467+ * @return Result
467468 */
468469 public function search (string $ dn , string $ filter , array $ attributes , bool $ onlyAttributes = false , int $ size = 0 , int $ time = 0 , int $ deref = LDAP_DEREF_NEVER , ?array $ controls = null ): mixed ;
469470
@@ -472,7 +473,7 @@ public function search(string $dn, string $filter, array $attributes, bool $only
472473 *
473474 * @see http://php.net/manual/en/function.ldap-list.php
474475 *
475- * @return \LDAP\ Result
476+ * @return Result
476477 */
477478 public function list (string $ dn , string $ filter , array $ attributes , bool $ onlyAttributes = false , int $ size = 0 , int $ time = 0 , int $ deref = LDAP_DEREF_NEVER , ?array $ controls = null ): mixed ;
478479
@@ -481,7 +482,7 @@ public function list(string $dn, string $filter, array $attributes, bool $onlyAt
481482 *
482483 * @see http://php.net/manual/en/function.ldap-read.php
483484 *
484- * @return \LDAP\ Result
485+ * @return Result
485486 */
486487 public function read (string $ dn , string $ filter , array $ attributes , bool $ onlyAttributes = false , int $ size = 0 , int $ time = 0 , int $ deref = LDAP_DEREF_NEVER , ?array $ controls = null ): mixed ;
487488
@@ -490,7 +491,7 @@ public function read(string $dn, string $filter, array $attributes, bool $onlyAt
490491 *
491492 * @see https://www.php.net/manual/en/function.ldap-parse-result.php
492493 *
493- * @param \LDAP\ Result $result
494+ * @param Result $result
494495 */
495496 public function parseResult (mixed $ result , int &$ errorCode = 0 , ?string &$ dn = null , ?string &$ errorMessage = null , ?array &$ referrals = null , ?array &$ controls = null ): LdapResultResponse |false ;
496497
@@ -595,7 +596,7 @@ public function modDelete(string $dn, array $entry): bool;
595596 *
596597 * @see https://www.php.net/manual/en/function.ldap-free-result.php
597598 *
598- * @param \LDAP\ Result $result
599+ * @param Result $result
599600 */
600601 public function freeResult (mixed $ result ): bool ;
601602
0 commit comments