How to fix "new property name: Aborted" error when make:entity command finishes?

324 Views Asked by At

I would like to make Doctrine entity via Symfony 4 console command

php bin/console make:entity article

The command creates the entity and repository file but it does not allow me to add fields to the entity. Command ends up with an error:

New property name (press to stop adding fields): Aborted.

What does it mean? How can I solve it? PHP 7.4 Win 10 Doctrine 2

1

There are 1 best solutions below

0
On

You should try with an uppercase. You should also check wether your database is associated correctly in your .env file with the right port.

Something like this:

DATABASE_URL="mysql://db_user:[email protected]:3306/db_name?serverVersion=5.7"