Code formatiert

This commit is contained in:
Lennart Kampshoff
2019-12-21 14:03:06 +01:00
parent c5f72c2ce5
commit ed95acc24d
56 changed files with 1771 additions and 1764 deletions

View File

@@ -27,7 +27,7 @@ namespace ReallifeGamemode.DataService.Logic
public string GenerateUserToken(User user)
{
if(user == null)
if (user == null)
{
return null;
}

View File

@@ -24,7 +24,7 @@ namespace ReallifeGamemode.DataService.Logic
{
Type[] types = Assembly.GetExecutingAssembly().GetTypes().Where(t => t.IsSubclassOf(typeof(LogicBase)) && !t.IsAbstract).ToArray();
foreach(Type type in types)
foreach (Type type in types)
{
services = services.AddScoped(type);
}