I'm trying to know the list of artisan command by using php artisan list
. and the command return me the following error
[Dotenv\Exception\InvalidFileException]
Dotenv values containing spaces must be surrounded by quotes.
What is wrong?
Thanks in advance.
Make sure that:
Verify your .env file. You need to check for the following:
Example:
Needs to be
You should remove all spaces from
.env
file to make an app work again.If you have to use spaces, instead of this:
Use quotes:
If you use single quotes then the possible to got this error containing spaces must be surrounded by quotes
if you use two word for username or database name in .env,put it inside a double quotation.