Details
-
Type:
Documentation
-
Status:
Open
-
Priority:
Minor
-
Resolution: Unresolved
-
Component/s: Documentation
-
Labels:None
Description
In the Getting Started guide, section "Entity Repositories":
In the PHP tab says
/**
- @Entity @Table(name="bugs", repositoryClass="BugRepository")
*/
but the repositoryClass must be in @Entity, you should change this for:
/**
- @Entity(repositoryClass="BugRepository") @Table(name="bugs")
*/