Uncaught ReflectionException: Class log does not exist Laravel 5.2

前端 未结 25 2135
长情又很酷
长情又很酷 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条回答
  •  萌比男神i
    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'
    

提交回复
热议问题