尽管传递了完整的名称空间,Symfony的make:entity仍无法确定新类的位置

时间:2019-11-10 20:02:27

标签: symfony symfony-3.4

我正在使用Symfony 3.4,并且拥有layout: list = [ sg.Table( values=[[0, 0], [0, 0], [0, 0]], headings=["Values", "Percent Difference"], size=(5, 5), num_rows=3, background_color="white", text_color="black", hide_vertical_scroll=True, key="_TABLE_", ), sg.SetOptions(element_background_color='#FFFFFF', key="_COLOR_"), ], [ sg.Button( button_text="Analyze", tooltip="Once channels and points are selected, use this to complete Cg/Cv analysis.", enable_events=True, key="_ANALYSIS_", ), ]

我试图用src/AppBundle添加新实体,但是创建失败。

无论我为类名提供bin/console make:entityMyClass还是任何其他奇怪的组合(\AppBundle\Entity\MyClassAppBundle\Entity\MyClassApp\Entity\MyClass ...),它总是说:

  

无法确定在哪里找到新类“ App \ Repository \ Entity \ MyClassRepository”,也许尝试使用完整的命名空间,例如“ \ My \ Full \ Namespace \ MyClassRepository”

在我看来,它忽略了我已经明确提供的\AppBundle\MyClass(完整名称空间)。

还在\AppBundle\Entity内添加maker.yaml(如错误消息中所建议)对此没有影响。

0 个答案:

没有答案