findBy with multiple IDs
You can do $em->getRepository(Entity::class)->findBy(array(‘id’ => $idList));
You can do $em->getRepository(Entity::class)->findBy(array(‘id’ => $idList));
What I usually do is point my phpunit testing framework on PHPStorm to the secret .phpunit directory which was created by the bridge, like: The location of the “phar” file is: bin/.phpunit/phpunit-(major).(minor)/phpunit or in some cases: vendor/bin/.phpunit/phpunit-(major).(minor)/phpunit After this, the specified phpunit executable will be called correctly when exeuting unit-tests, but with a –no-configuration option. … Read more