Symfony:学说:build --all --and-load 分解为单个命令?
现在,在我的 Symfony 项目中,有一段时间我一直在使用以下命令来删除我的数据库,创建所有内容并重新加载我的所有装置...
./symfony doctrine:build --all --and-load
我想知道的是,个人 ./symfony 学说:whatever
命令这会分解为什么顺序?就像如果我想一次执行每个单独的命令来完成相同的结果,那么命令是什么?
With my Symfony projects now, for a while I've been using the following command to drop my database, create everything and reload all my fixtures...
./symfony doctrine:build --all --and-load
What I'm wondering, is what individual ./symfony doctrine:whatever
commands does this break down to and in what order? Like if I wanted to execute each individual command one-at-a-time to accomplish the same result, what are the commands?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
快速查看 sfDoctrineBuildTask 的源代码会告诉您以下内容:
A quick look at the source of sfDoctrineBuildTask would tell you the following:
文档位于:http://www.symfony-project.org/参考/1_4/en/16-任务
在这里您可以阅读所有任务文档。
The documentation is here: http://www.symfony-project.org/reference/1_4/en/16-Tasks
Here you can read all task documentation.