I'm trying to load multiple configuration files as below. It appears this is possible, and I can pass the Loader class an array of filepaths, but this is not working?
$Loader = (new \josegonzalez\Dotenv\Loader([ __DIR__ . '/../.env', __DIR__ . '/../aws.env', ])) ->parse() ->toEnv($overwrite) ->toServer($overwrite) ->putenv($overwrite);