消息 'xx\xxxx\xxx does not exist' 中的未捕获异常 'ReflectionException'
Uncaught exception 'ReflectionException' with message 'xx\xxxx\xxx does not exist' in
所以我在使用 silex 并参考文档。
因此,当我尝试执行 SecurityServiceProvider
时,我遇到了这条消息。
Fatal error: Uncaught exception 'ReflectionException' with message 'Class Symfony\Component\Security\Http\Firewall\ContextListener does not exist' in
这让我紧张地想来 post 在这里,就这样。
此错误主要是由于不需要依赖项而产生的。
简单来说,这个函数的代码 "doesn't exist" 在你的代码库中,所以你必须 运行 composer
命令到 require
相应的包,一旦 composer 下载并安装了所需的文件,您就可以开始了。
所以在我的情况下,我必须 运行 以下作曲家命令。
composer require symfony/security
所以我在使用 silex 并参考文档。
因此,当我尝试执行 SecurityServiceProvider
时,我遇到了这条消息。
Fatal error: Uncaught exception 'ReflectionException' with message 'Class Symfony\Component\Security\Http\Firewall\ContextListener does not exist' in
这让我紧张地想来 post 在这里,就这样。
此错误主要是由于不需要依赖项而产生的。
简单来说,这个函数的代码 "doesn't exist" 在你的代码库中,所以你必须 运行 composer
命令到 require
相应的包,一旦 composer 下载并安装了所需的文件,您就可以开始了。
所以在我的情况下,我必须 运行 以下作曲家命令。
composer require symfony/security