I recently integrated zend framework with doctrine 2. I am having some issues trying to generate repository classes. I have no problems generating proxies.

The weird part is when I generate-repositories the output says

Repository classes generated to "/library"

But I cant seem to find the files. Inside my Entity class I have:

@Entity(repositoryClass="Entity\Repository\UserRepository")

Does anyone have any idea?

link|improve this question

50% accept rate
Why generate Repository classes? I only takes a minute to write them yourself... :s – Cobby Feb 19 '11 at 15:22
yea I guess. Im just going to write them myself. – slik Feb 19 '11 at 15:29
What was the exact command that you used to generate the repositories? – Sid Aug 10 '11 at 9:44
feedback

2 Answers

Are you running the doctrine script with the correct path? This is how run it and it created the repos in the correct place

php scripts/doctrine.php orm:generate-repositories library/

I think you are using /library instead of library/

just a thought.

PS: I run this in one level above the document root.

link|improve this answer
I tried that. But I get an invalidargument, directory does not exist. – slik Feb 19 '11 at 15:28
How is your directory structure and where exactly running the script? – Optimus Feb 19 '11 at 15:30
feedback

I don't know what is the directory structure you use, but according to most of the guides I found online and the way I implemented it, I guess your Entity directory is inside somesort of a MyApp directory which is inside the library directory.

If this is the case indeed, your @Entity line should be:

@Entity(repositoryClass="MyApp\Entity\Repository\UserRepository")

as opposed to what you wrote

@Entity(repositoryClass="Entity\Repository\UserRepository")

where MyApp is your model's root namespace name.

The @Entity line you wrote, should have generated the repository files in library/Entity/Repository.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.