Formatted all files according to editorconfig

This commit is contained in:
Marcel Kapfer 2021-03-29 16:15:29 +02:00
parent 261eed61cf
commit 4878b2d9f7
Signed by: mmk2410
GPG key ID: CADE6F0C09F21B09
8 changed files with 51 additions and 51 deletions

View file

@ -61,7 +61,7 @@ class FeGroupsRepository
$this->getIpQueryString($queryBuilder);
$rows = $queryBuilder->execute()
->fetchAll();
->fetchAll();
if (!empty($rows)) {
return $rows;

View file

@ -48,7 +48,7 @@ class AuthenticationService extends AuthenticationServiceCore
public function getGroups($user, $knownGroups)
{
$feGroupsRepository = GeneralUtility::makeInstance(ObjectManager::class)
->get(FeGroupsRepository::class);
->get(FeGroupsRepository::class);
$feGroups = $feGroupsRepository->findByCurrentIpAddress();
if (!empty($feGroups)) {
return $feGroups;

View file

@ -40,7 +40,7 @@ class AddCustomGroupsSlot
public function addCustomGroups($customGroups)
{
$feGroupsRepository = GeneralUtility::makeInstance(ObjectManager::class)
->get(FeGroupsRepository::class);
->get(FeGroupsRepository::class);
$feGroups = $feGroupsRepository->findByCurrentIpAddress();
foreach ($feGroups as $feGroup) {