8000 GuardAuthenticator implementation for Symfony 2.8 and later by niels-nijens · Pull Request #75 · auth0/symfony · GitHub
[go: up one dir, main page]

Skip to content

GuardAuthenticator implementation for Symfony 2.8 and later #75

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Sep 26, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove author tags from class docblocks
  • Loading branch information
niels-nijens committed Sep 24, 2019
commit 5260fc18f83e0e8f9ca43c2dc7c9aaa173712f12
2 changes: 0 additions & 2 deletions Tests/Security/Guard/JwtGuardAuthenticatorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@

/**
* Tests the @see JwtGuardAuthenticator.
*
* @author Niels Nijens <nijens.niels@gmail.com>
*/
class JwtGuardAuthenticatorTest extends TestCase
{
Expand Down
2 changes: 0 additions & 2 deletions Tests/Security/User/JwtUserProviderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@

/**
* Tests the @see JwtUserProvider.
*
* @author Niels Nijens <nijens.niels@gmail.com>
*/
class JwtUserProviderTest extends TestCase
{
Expand Down
2 changes: 0 additions & 2 deletions src/Security/Guard/JwtGuardAuthenticator.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@

/**
* Handles authentication with JSON Web Tokens through the 'Authorization' request header.
*
* @author Niels Nijens <nijens.niels@gmail.com>
*/
class JwtGuardAuthenticator extends AbstractGuardAuthenticator
{
Expand Down
4 changes: 1 addition & 3 deletions src/Security/User/JwtUserProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@

/**
* Basic JWT UserProvider implementation when you do not require loading the user from the database and
* the JWT verification with Auth0 is enough for your use-case.
*
* @author Niels Nijens <nijens.niels@gmail.com>
* the JWT verification with Auth0 is enough for your use-case. Eg. Machine-to-Machine authentication.
*/
class JwtUserProvider implements JWTUserProviderInterface
{
Expand Down
0