我接受了不记录时收到此错误 InvalidArgumentException:
文件cache.xml不存在(在: C:\瓦帕\ WWW \的HelloWorld \厂商\ SENSIO \框架-额外束\ Sensio公司\捆绑\ FrameworkExtraBundle \ DependencyInjection /../资源/配置)
我使用Netbeans 我不知道怎么解决它,所以我有正确的cashe.xml文件
答案 0 :(得分:0)
在 [YourBundleName] / DependencyInjection / [YourBundleName] Extension.php 中检查您的依赖注入文件。 load
函数看起来像这样:
public function load(array $configs, ContainerBuilder $container)
{
$configuration = new Configuration();
$config = $this->processConfiguration($configuration, $configs);
$loader = new Loader\XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
$loader->load('cache.xml');
...
}