Skip to content

Commit

Permalink
Cs fix
Browse files Browse the repository at this point in the history
  • Loading branch information
butschster committed Oct 2, 2024
1 parent 61c71e1 commit 8f8bd98
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/modules/Events/Application/EventsBootloader.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ public function defineSingletons(): array
EventRepository::class => static fn(
ORMInterface $orm,
EntityManagerInterface $manager,
DatabaseInterface $db
DatabaseInterface $db,
): EventRepository => new EventRepository(
em: $manager,
db: $db,
select: new Select($orm, Event::class)
select: new Select($orm, Event::class),
),
];
}
Expand Down
2 changes: 1 addition & 1 deletion app/src/Interfaces/Http/Controller/SettingsAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function __invoke(
'version' => $appVersion->version,
'client' => [
'events' => $supportedEvents,
]
],
]);
}
}

0 comments on commit 8f8bd98

Please sign in to comment.