Skip to content

Commit

Permalink
remove use statements from ext_localconf
Browse files Browse the repository at this point in the history
this can break the installation
  • Loading branch information
Tobias Gaertner committed Mar 6, 2020
1 parent 679f885 commit 36c4bc9
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions ext_localconf.php
Original file line number Diff line number Diff line change
@@ -1,19 +1,16 @@
<?php

use B13\Warmup\Authentication\FrontendUserGroupInjector;
use TYPO3\CMS\Core\Utility\ExtensionManagementUtility;

ExtensionManagementUtility::addService(
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addService(
'warmup',
'auth',
FrontendUserGroupInjector::class,
\B13\Warmup\Authentication\FrontendUserGroupInjector::class,
[
'title' => 'Add Frontend Groups based on CLI Request Builder',
'description' => 'Adds frontend usergroups by verifying data from the Frontend Request Builder.',
'subtype' => 'getGroupsFE',
'available' => false,
'priority' => 90,
'quality' => 90,
'className' => FrontendUserGroupInjector::class,
'className' => \B13\Warmup\Authentication\FrontendUserGroupInjector::class,
]
);

0 comments on commit 36c4bc9

Please sign in to comment.