Uncaught ReflectionException: Class log does not exist Laravel 5.2

前端 未结 25 2110
长情又很酷
长情又很酷 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:37

    In your .env file make sure you have no spaces for values

    for example this is allowed

    DB_USERNAME=homestead
    

    this is not allowed

    DB_USERNAME=home stead
    

    you can wrap the value in quotes if you have spaces.

    DB_USERNAME="home stead"
    

    really wish they used json for the .env file, maybe we should request that feature

提交回复
热议问题