[Web] update directorytree/ldaprecord

This commit is contained in:
FreddleSpl0it
2024-02-20 10:30:11 +01:00
parent 40146839ef
commit d479d18507
481 changed files with 13919 additions and 6171 deletions
@@ -29,6 +29,13 @@ interface CursorPaginator
*/
public function fragment($fragment = null);
/**
* Add all current query string values to the paginator.
*
* @return $this
*/
public function withQueryString();
/**
* Get the URL for the previous page, or null.
*
@@ -15,7 +15,7 @@ interface Paginator
/**
* Add a set of query string values to the paginator.
*
* @param array|string $key
* @param array|string|null $key
* @param string|null $value
* @return $this
*/
@@ -25,7 +25,7 @@ interface Paginator
* Get / set the URL fragment to be appended to URLs.
*
* @param string|null $fragment
* @return $this|string
* @return $this|string|null
*/
public function fragment($fragment = null);
@@ -53,14 +53,14 @@ interface Paginator
/**
* Get the "index" of the first item being paginated.
*
* @return int
* @return int|null
*/
public function firstItem();
/**
* Get the "index" of the last item being paginated.
*
* @return int
* @return int|null
*/
public function lastItem();