doctrine:migrations:diff不工作,因为我已经更新到Symfony 6.3

wlsrxk51  于 2023-06-24  发布在  其他
关注(0)|答案(3)|浏览(116)

当我使用命令时

php bin/console doctrine:migrations:diff

我有这个错误

In get_Lock_Default_Store_TTEhGTService.php line 20:
                                                                                         
  Attempted to load class "StoreFactory" from namespace "Symfony\Component\Lock\Store".  
  Did you forget a "use" statement for another namespace?

Problem
我已经检查了最新的教义版本,我是最新的,我已经试着在教义文件中寻找,但什么也没有...

a64a0gku

a64a0gku1#

看起来像是引用已移动或删除的类的过时缓存。尝试删除var/cache目录的内容。如果没有帮助,运行php bin/console -vv doctrine:migrations:diff获取堆栈跟踪。

x9ybnkn6

x9ybnkn62#

你试过做composer dump吗?

carvr3hs

carvr3hs3#

你好我找到了解决方案,我们只需要添加composer require symfony/lock,它又工作了;)

相关问题