The following code ``` $result = $this->getEntityManager() ->getRepository(ProductCrossSell::class) ->createQueryBuilder('pcs') ->where('pcs.id IN (:ids)') ->setParameter('ids', $ids) ->delete() ->getQuery() ->getResult(); \PHPStan\dumpType($result); ``` Is considering `$result` as an array. But it's an int: the number of deleted elements. Same with `update()` It was introduce by https://github.com/phpstan/phpstan-doctrine/pull/232 cc @arnaud-lb