[Routing] fix bad fix

This commit is contained in:
Nicolas Grekas 2019-09-24 18:21:53 +02:00
parent 7c04a82a47
commit 04fe347df9

View File

@ -40,7 +40,7 @@ class PhpFileLoader extends FileLoader
// the closure forbids access to the private scope in the included file
$loader = $this;
$load = \Closure::bind(static function ($file) {
$load = \Closure::bind(static function ($file) use ($loader) {
return include $file;
}, null, ProtectedPhpFileLoader::class);