Skip to content

Commit 1428e6d

Browse files
bug symfony#38422 [SecurityGuard] Implement PostAuthenticationGuardToken::getFirewallName() (derrabus)
This PR was submitted for the master branch but it was merged into the 5.x branch instead. Discussion ---------- [SecurityGuard] Implement PostAuthenticationGuardToken::getFirewallName() | Q | A | ------------- | --- | Branch? | master | Bug fix? | yes | New feature? | no | Deprecations? | no | Tickets | Fix symfony#38421 | License | MIT | Doc PR | N/A Commits ------- 66fbf0a [SecurityGuard] Implement PostAuthenticationGuardToken::getFirewallName().
2 parents 8df5aad + 66fbf0a commit 1428e6d

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/Symfony/Component/Security/Guard/Token/PostAuthenticationGuardToken.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,11 @@ public function getProviderKey()
6969
return $this->providerKey;
7070
}
7171

72+
public function getFirewallName(): string
73+
{
74+
return $this->getProviderKey();
75+
}
76+
7277
/**
7378
* {@inheritdoc}
7479
*/

0 commit comments

Comments
 (0)