我正在尝试在symfony 3中安装CoresphereConsoleBundle。以下是我遵循的步骤(来自https://github.com/CoreSphere/ConsoleBundle):
1)安装通过(composer需要coresphere / console-bundle) - 顺利进行
2)更新了作曲家 - 进展顺利
3)已安装的资产 - 进展顺利
4)在/app/Appkernel.php中添加了一行:
if (in_array($this->getEnvironment(), ['dev', 'test'], true))
{
[...]
$bundles[] = new CoreSphere\ConsoleBundle\CoreSphereConsoleBundle();
}
5)在routing_dev.yml中添加了一个条目:
coresphere_console:
resource: .
type: extra
我尝试通过http://localhost:8000/app_dev.php/_console
访问控制台我得到的只是这个不祥的信息:
未解决的类型冲突。
symfony日志中没有任何内容可以说明这一点。谷歌搜索它什么都没有。
任何帮助表示赞赏。最诚挚的问候,
MC
答案 0 :(得分:0)
该死的我:错误消息来自网站的内容管理。由于控制台未被识别为数据库中声明的对象类型,因此会触发错误消息。
感谢您的关注。