website/errors/doctrine.findByArgument.md
<?php declare(strict_types = 1);
use Doctrine\ORM\EntityManager;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity]
class User
{
#[ORM\Id]
#[ORM\Column]
public int $id;
#[ORM\Column]
public string $name;
}
function doFoo(EntityManager $em): void
{
$repository = $em->getRepository(User::class);
$repository->findBy(['nonexistent' => 'test']);
}
The findBy() method on a Doctrine entity repository accepts an array of field names as criteria. The field nonexistent does not exist on the User entity, so the call will fail at runtime with a Doctrine exception.
When bleeding edge is enabled, the field names in the second argument (the order-by array) are checked the same way:
$repository->findBy(['name' => 'test'], ['nonexistent' => 'ASC']);
This rule is provided by the phpstan-doctrine extension.
Use a field name that actually exists on the entity:
- $repository->findBy(['nonexistent' => 'test']);
+ $repository->findBy(['name' => 'test']);
The same applies to the order-by argument:
- $repository->findBy(['name' => 'test'], ['nonexistent' => 'ASC']);
+ $repository->findBy(['name' => 'test'], ['id' => 'ASC']);