Merge branch '4.4'

* 4.4:
  [Routing] fix bad fix
This commit is contained in:
Nicolas Grekas 2019-09-24 18:23:35 +02:00
commit 906aad95e6
1 changed files with 1 additions and 1 deletions

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);