So I'm using noodlehaus / dispatch for my website routhing. I want to pass some variables from main scope like $currentLang to route(...), but I get this error:
Notice: Undefined variable: currentLang in C:\xampp\htdocs\_PERSONAL\newSite\index.php on line 18
Here's a part of my code.
require './functions/dispatch.php';
$currentLang = 'en';
route('GET', '/resume', function () {
    $data['lang'] = $currentLang;
    return response(
        phtml(__DIR__.'/views/resume', ['data' => $data ])
    );
});
dispatch();
Please help me with this. Thanks.
