我正在使用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:entity
或MyClass
还是任何其他奇怪的组合(\AppBundle\Entity\MyClass
,AppBundle\Entity\MyClass
,App\Entity\MyClass
...),它总是说:
无法确定在哪里找到新类“ App \ Repository \ Entity \ MyClassRepository”,也许尝试使用完整的命名空间,例如“ \ My \ Full \ Namespace \ MyClassRepository”
在我看来,它忽略了我已经明确提供的\AppBundle\MyClass
(完整名称空间)。
还在\AppBundle\Entity
内添加maker.yaml
(如错误消息中所建议)对此没有影响。