Après un composer update:
Executing script cache:clear [KO]
[KO]
Script cache:clear returned with error code 255
!! PHP Warning: Uncaught ReflectionException: Class "Doctrine\Common\Persistence\ObjectManager" not found while loading "App\DataFixtures\AppFixtures". in /home/habeeb/lab/project/vendor/symfony/config/Resource/ClassExistenceResource.php:181
Il faut changer "use Doctrine\Common\Persistence\ManagerRegistry" par use Doctrine\Persistence\ManagerRegistry;
code:
- use Doctrine\Common\Persistence\ObjectManager;
+ use Doctrine\Persistence\ObjectManager;