本文介绍了使用邮件时找不到类'PhpParser\Parser\Php7'Laravel的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
一周前我没有问题,现在当我尝试通过邮件发送邮件: Mail :: queue('myemail',$ data,function($ message)use($ data) {...});
我有以下错误:
ParserFactory.php中的FatalErrorException行27:
未找到PhpParser\Parser\Php7类别
我该怎么办来解决这个问题?我使用wampserver 3.0.4和laravel 5.2
解决方案
检查这个它对我有用,删除nikic / php-解析器目录,并运行作曲家更新。
I had no problems since a week ago, now when I try to send a Mail via : Mail::queue('myemail', $data, function($message) use ($data){....});
I have the following error :
FatalErrorException in ParserFactory.php line 27:
Class 'PhpParser\Parser\Php7' not found
what can I do to solve this issue ? I'm using wampserver 3.0.4 and laravel 5.2
解决方案
Check this https://github.com/nikic/PHP-Parser/issues/291 it worked to me, drop the "nikic/php-parser" directory in vendor/ and running composer update.
这篇关于使用邮件时找不到类'PhpParser\Parser\Php7'Laravel的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!