DDC-953: CLI tools orm:generate-entities --regenerate-entities=1 flag will generate empty entities 50% of time. #1186

Open
opened 2026-01-22 13:05:21 +01:00 by admin · 0 comments
Owner

Originally created by @doctrinebot on GitHub (Dec 28, 2010).

Originally assigned to: @beberlei on GitHub.

Jira issue originally created by user flynsarmy:

Running the command:
doctrine orm:generate-entities --regenerate-entities=1 --generate-annotations=1 ./

50% of the time my entity will appear as:

<?php namespace models; /**** - models\Role * - @Table(name="roles") - @Entity(repositoryClass="models\repositories\RoleRepository") */ class Role { } The other 50% everything will be in there. In addition, if the --regenerate-entities=1 argument is removed, if I change the data in my YAML schema file for a column (such as changing length=255 to length=50 on a string), the annotations won't be updated when the updated entity is generated. It seems only new fields are being added to the entity files which is why --regenerate-entities=1 was required in the first place.
Originally created by @doctrinebot on GitHub (Dec 28, 2010). Originally assigned to: @beberlei on GitHub. Jira issue originally created by user flynsarmy: Running the command: doctrine orm:generate-entities --regenerate-entities=1 --generate-annotations=1 ./ 50% of the time my entity will appear as: <?php namespace models; /**** - models\Role * - @Table(name="roles") - @Entity(repositoryClass="models\repositories\RoleRepository") */ class Role { } The other 50% everything will be in there. In addition, if the --regenerate-entities=1 argument is removed, if I change the data in my YAML schema file for a column (such as changing length=255 to length=50 on a string), the annotations won't be updated when the updated entity is generated. It seems only new fields are being added to the entity files which is why --regenerate-entities=1 was required in the first place.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: doctrine/archived-orm#1186