Fix casing for constructor params

This commit is contained in:
Hisham Bin Ateya
2020-03-05 20:03:54 +03:00
parent 303bdf3be2
commit 425b4e1c67
60 changed files with 217 additions and 217 deletions

View File

@ -15,9 +15,9 @@ namespace Oqtane.Infrastructure
private readonly IHostApplicationLifetime _hostApplicationLifetime;
private readonly IWebHostEnvironment _environment;
public InstallationManager(IHostApplicationLifetime HostApplicationLifetime, IWebHostEnvironment environment)
public InstallationManager(IHostApplicationLifetime hostApplicationLifetime, IWebHostEnvironment environment)
{
_hostApplicationLifetime = HostApplicationLifetime;
_hostApplicationLifetime = hostApplicationLifetime;
_environment = environment;
}