Laravel Tinker 错误:

我正在尝试php artisan tinker在我的项目上运行并收到此错误:


Symfony\Component\Debug\Exception\FatalThrowableError  : Call to undefined method Psy\Configuration::getLoop()


  at /var/www/[my_project]/vendor/psy/psysh/src/Psy/Shell.php:80

    76|     public function __construct(Configuration $config = null)

    77|     {

    78|         $this->config   = $config ?: new Configuration();

    79|         $this->cleaner  = $this->config->getCodeCleaner();

  > 80|         $this->loop     = $this->config->getLoop();

    81|         $this->context  = new Context();

    82|         $this->includes = array();

    83|         $this->readline = $this->config->getReadline();

    84|         $this->inputBuffer = array();


如您所见,问题出在第80行。我想我必须提到,我曾经使用Throwable并且FatalThrowableError在我的控制器之一来获得Exception,因为一般Exception不能得到Exception我得到!我认为处理错误抛出另一种方式,并能拿到Exception的Exception本身!无论如何,我不再使用Throwable或FatalThrowableError在我的代码中的任何地方使用,但我仍然收到上述错误。


我怎样才能php artisan tinker重新找到工作?我认为这个问题与composer.


慕尼黑的夜晚无繁华
浏览 160回答 1
1回答

三国纷争

我只是vendor手动删除了我的文件夹,并尝试运行composer install. 通过这样做,php artisan tinker命令再次正常工作。这可能不是正确的解决方案,但无论如何,它再次起作用。也许只是删除vendor/psy文件夹并运行composer install也会做同样的事情。
打开App,查看更多内容
随时随地看视频慕课网APP