Symfony 自动生成的模型类功能位置
我正在开发一个 symfony 项目,并生成了一组名为 Base
、
、< name>Peer.php
和 Base
我完成了著名的 jobeet 教程,但我仍然对在模型的这些文件中定位函数存有疑问。所以我的问题是:
我必须将什么样的函数放入哪个文件中?
或以其他方式表达
我如何知道在这些文件中找到函数的位置?
非常感谢
i'm working on a symfony project and i generated a set of model classes called Base<name>.php
, <name>.php
, <name>Peer.php
and Base<name>Peer.php
I did the famous jobeet tutorial and i still have doubts about locating functions in these files of the model. So my question is:
What kind of functions i have to put in which file?
or expressed other way
How i know where to locate a function in these files?
thank you very much
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您永远不应该编辑以
Base
为前缀的文件,如果您更改架构中的某些内容并重新生成这些文件,它们可能会被覆盖。您自己编写的自定义方法应该位于
Peer
类中。为了轻松找到方法,我使用了 PDT 等优秀的 IDE,它可以解析文件并允许搜索方法。
You should never edit the files prefixed with
Base
, they can be overwritten if you change something in your schema and regenerate these files.The custom methods you are writing yourself should be in the
Peer
class.To easily locate a method, I use a good IDE like PDT that parses the files and allows searching methods.