ZF2 + Doctrine: generate entities returns 'in metadata classes to process'

0

Good morning.

In my project, I'm tending to create entities from the database (php5.4 + zf2 + doctrine).

I ran the command below:

    bin/doctrine-module orm:convert-mapping --filter="Category" --from-database annotation --namespace="Categoria\Entity\" module/Categoria/src

The class was successfully created. However, when I run the command to generate the entity, I have a message 'in metadata classes to process' (with the command below:)

    bin/doctrine-module orm:generate-entities --filter"Category" --generate-annotations --generate-methods module/Categoria/src

Can you help?

    
asked by anonymous 21.08.2014 / 15:09

1 answer

0

Alternatively, I created the getters and setters through the netbeans code generator.

    
22.08.2014 / 20:45