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

@ -20,10 +20,10 @@ namespace Oqtane.Controllers
private readonly IWebHostEnvironment _environment;
private readonly ILogManager _logger;
public ThemeController(IThemeRepository Themes, IInstallationManager InstallationManager, IWebHostEnvironment environment, ILogManager logger)
public ThemeController(IThemeRepository themes, IInstallationManager installationManager, IWebHostEnvironment environment, ILogManager logger)
{
_themes = Themes;
_installationManager = InstallationManager;
_themes = themes;
_installationManager = installationManager;
_environment = environment;
_logger = logger;
}