From a614cca6d170a0769dd7c24bbd16e134445fbb2e Mon Sep 17 00:00:00 2001 From: c33s Date: Mon, 26 Aug 2019 15:55:45 +0200 Subject: [PATCH] removed webpath set to null on unset resolver --- DependencyInjection/Configuration.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php index 88ebc634a..b39e2cbe9 100644 --- a/DependencyInjection/Configuration.php +++ b/DependencyInjection/Configuration.php @@ -95,10 +95,6 @@ public function getConfigTreeBuilder() throw new \LogicException('Resolvers has to be array'); } - if (false === \array_key_exists('default', $v['resolvers'])) { - $v['resolvers']['default'] = ['web_path' => null]; - } - return $v; }) ->end();