Skip to content

Commit b3cf36a

Browse files
committed
[Config] Missing type argument passed to loader.
In FileLoader the $type is not passed to the child loader.
1 parent 9a5e6c9 commit b3cf36a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Config/Loader/FileLoader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public function import($resource, $type = null, $ignoreErrors = false, $sourceRe
7272
}
7373
self::$loading[$resource] = true;
7474

75-
$ret = $loader->load($resource);
75+
$ret = $loader->load($resource, $type);
7676

7777
unset(self::$loading[$resource]);
7878

0 commit comments

Comments
 (0)