From 5b07518c14aa2c48c9b68a317f1b4947935a33d1 Mon Sep 17 00:00:00 2001 From: Gilles Demeyer Date: Tue, 3 Mar 2026 18:22:24 +0100 Subject: [PATCH] Fix import statement for QueryNameGeneratorInterface --- core/filters.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/filters.md b/core/filters.md index a41a7c5bbfe..b50580a3469 100644 --- a/core/filters.md +++ b/core/filters.md @@ -743,10 +743,10 @@ For Doctrine ORM, your filter should implement `ApiPlatform\Doctrine\Orm\Filter\ namespace App\Filter; use ApiPlatform\Doctrine\Orm\Filter\FilterInterface; +use ApiPlatform\Doctrine\Orm\Util\QueryNameGeneratorInterface; use ApiPlatform\Metadata\Operation; use ApiPlatform\State\ParameterNotFound; use Doctrine\ORM\QueryBuilder; -use Doctrine\ORM\Query\QueryNameGeneratorInterface; final class RegexpFilter implements FilterInterface {