From 8b109ae5ffd3323c2d542e9d398ccf0ff0d510c5 Mon Sep 17 00:00:00 2001 From: Alexey Rogachev Date: Mon, 9 Sep 2024 17:50:28 +0500 Subject: [PATCH] Rename `withFilterHandlers` to with `withAddedFilterHandlers` in `AbstractQueryDataReader` --- src/AbstractQueryDataReader.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AbstractQueryDataReader.php b/src/AbstractQueryDataReader.php index 164c2fb..932dfda 100644 --- a/src/AbstractQueryDataReader.php +++ b/src/AbstractQueryDataReader.php @@ -255,7 +255,7 @@ public function withBatchSize(?int $batchSize): static * @psalm-suppress ArgumentTypeCoercion * * @psalm-return static */ - public function withFilterHandlers(FilterHandlerInterface ...$filterHandlers): static + public function withAddedFilterHandlers(FilterHandlerInterface ...$filterHandlers): static { $new = clone $this; $new->count = $new->data = null;