老师你好,我想问一个关于FOSUserBundle的问题 @洪涛
在FOSUserBundle的文档中,有要求
Step 2: Configure the Autoloader
Add the FOS namespace to your autoloader:
<?php
// app/autoload.php
$loader->registerNamespaces(array(
// ...
'FOS' => __DIR__.'/../vendor/bundles',
));
但是我实际使用的时候IDE找不到registerNamespaces方法,我想请问是它文档太旧了吗,还有这个问题应该怎么解决呢,非得要使用完整的路径吗?