-
Notifications
You must be signed in to change notification settings - Fork 215
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
fix: Remove redundant token verification step #742
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #742 +/- ##
===========================================
Coverage 100.00% 100.00%
- Complexity 1338 1339 +1
===========================================
Files 62 62
Lines 4670 4671 +1
===========================================
+ Hits 4670 4671 +1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Making some minor unrelated code tweaks to accommodate upstream changes to our CI tooling, so tests will pass. |
Please disregard the remaining failing Rector and PHP CS Fixer tests, I need to fix a bug in the CI workflow there. The tests pass fine locally. |
**Fixed** - fix: Remove redundant token verification step [\#742](#742) ([evansims](https://github.com/evansims))
**Fixed** - fix: Remove redundant token verification step [\#742](#742) ([evansims](https://github.com/evansims))
Changes
This PR removes a redundant JWT verification step identified in #741. Verification is already performed in the token verifier constructor, so calling its
verify()
method afterward is redundant and unnecessary.References
Closes #741.
Testing
No changes to testing were necessary for this change.
Contributor Checklist