We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f44eef4 commit c75b276Copy full SHA for c75b276
src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Configuration.php
@@ -56,7 +56,8 @@ public function getConfigTreeBuilder()
56
->validate()
57
->ifTrue(function ($v) { return !isset($v['assets']); })
58
->then(function ($v) {
59
- if (!$v['templating']['assets_version']
+ if (!isset($v['templating'])
60
+ || !$v['templating']['assets_version']
61
&& !count($v['templating']['assets_base_urls']['http'])
62
&& !count($v['templating']['assets_base_urls']['ssl'])
63
&& !count($v['templating']['packages'])
0 commit comments