我正在将 DoctrineBundle 和 SensioGeneratorBundle 用于我的Symfony项目。
当我使用php命令创建实体时:
app/console doctrine:generate:entity之所以能够胜任,是因为它与我的项目组织匹配,但不适用于实体的存储库:
00000000 aa______ 50 F 91 59 20 76
0000001 bb______ 50 F 46 39 8 5
0000003 cc______ 26 F 30 50 71 36
0000004 dd______ 40 M 58 71 20 10
顺便说一下,我的composer.json的命名空间配置如下:
0000000 aa______ 50 F 91 59
0000000 aa______ 50 F 20 76
0000001 bb______ 50 F 46 39
0000001 bb______ 50 F 8 5
0000003 cc______ 26 F 30 50
0000003 cc______ 26 F 71 36
0000004 dd______ 40 M 58 71
0000004 dd______ 40 M 20 10
是否有一种方法可以编辑Repository目录的路径,就像进行迁移一样?
project_name
│ index.php
└───Application <-- generated but it shouldn't
└───Repository
| MyEntityRepository.php
│
└───app
└───Controllers
└───Migrations
└───Entity
| MyEntity.php
└───Repository <-- Entity's repository must be here
谢谢您的帮助。