Skip to content
Advertisement

@DoctrineORMMapping “Annotation was never imported”

so i’m new to Doctrine and PHP in general and i have a small issue that i don’t know how to fix… I need to create a PHP app (using Doctrine) and to make communication with the DB my predecessor used Doctrine ORM; so i tried to use one of his files as a templates to make my part of the app but it does not seem to work…

First, his file used as template:

JavaScript

Then, mine using the same philosophy:

JavaScript

Then i try to run this:

JavaScript

into a terminal to update the DB, it works fine with the previous file (User Class) but mine (Agency Class) throw a error:

JavaScript

At first i thought it was an issue with import, so i made exactly the sames imports as in User Class but the error is still present.

Googling the error lead me to a github issue that leeds to this as a fix; but it doesn’t seems to work’s for me…

What should i do to fix this issue?

Advertisement

Answer

You are using

JavaScript

obviously this annotation does not exist, why do you have it there?

Remove @ORMnameAgency() and @ORMnameContact, it doesn’t make any sense.

Explanation: by @ORMnameAgency() you actually mean DoctrineORMMappingnameAgency and this annotation naturally doesn’t exist in Doctrine.

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement