Skip to content

Commit

Permalink
Fixed bug that AOP not working when using variadic parameters. (#6372)
Browse files Browse the repository at this point in the history

Co-authored-by: 李铭昕 <[email protected]>
  • Loading branch information
assert6 and limingxinleo committed Dec 11, 2023
1 parent 2b2f361 commit f5379df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/PaginatorInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ public function url(int $page): string;
* Add a set of query string values to the paginator.
*
* @param array|string $key
* @return $this
* @return static
*/
public function appends($key, ?string $value = null);

/**
* Get / set the URL fragment to be appended to URLs.
*
* @return $this|string
* @return static|string
*/
public function fragment(?string $fragment = null);

Expand Down

0 comments on commit f5379df

Please sign in to comment.