Skip to content

Commit 9fbb20b

Browse files
committed
Add AuthServiceLoadAuthenticatorTask
1 parent 6a04190 commit 9fbb20b

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

src/Authentication/Generator/Task/AuthServiceLoadAuthenticatorTask.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,10 @@ protected function addAuthenticators(array $authenticators, string $folder, $plu
7474
continue;
7575
}
7676
$name = $matches[1];
77+
if ($name === 'Abstract') {
78+
continue;
79+
}
80+
7781
if ($plugin) {
7882
$name = $plugin . '.' . $name;
7983
}

src/Authentication/Generator/Task/AuthServiceLoadIdentifierTask.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,10 @@ protected function addIdentifiers(array $components, $folder, $plugin = null) {
7676
continue;
7777
}
7878
$name = $matches[1];
79+
if ($name === 'Abstract') {
80+
continue;
81+
}
82+
7983
if ($plugin) {
8084
$name = $plugin . '.' . $name;
8185
}

0 commit comments

Comments
 (0)