Uncaught ReflectionException: Class log does not exist Laravel 5.2

前端 未结 25 1829
长情又很酷
长情又很酷 2020-11-27 17:15

I am currently trying to clone an existing project of mine from github. After clone I run composer install during the process I receive the following error:

相关标签:
25条回答
  • 2020-11-27 17:43

    This problem is usually caused by spaces between words in the .env file. Make sure if you have something like

    SITE_DESCRIPTION = Social Network for dogs
    

    you replace it with

    SITE_DESCRIPTION = 'Social Network for dogs'
    
    0 讨论(0)
提交回复
热议问题