Skip to content

Commit 0dc81a0

Browse files
vincentchalamonalanpoulain
authored andcommitted
fix: replace dd by todo
1 parent be7df33 commit 0dc81a0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/Fixtures/TestBundle/State/ProductProvider.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ public function __construct(private readonly ManagerRegistry $managerRegistry, p
3232
public function provide(Operation $operation, array $uriVariables = [], array $context = []): ?object
3333
{
3434
if ($operation instanceof CollectionOperationInterface) {
35-
dd('todo');
35+
// todo Handle collection of products
36+
return null;
3637
}
3738

3839
return $this->managerRegistry->getRepository($this->orm ? Product::class : ProductDocument::class)->findOneBy([

0 commit comments

Comments
 (0)