-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace use-statements with fqdn phpdocs (src)
- Loading branch information
Showing
94 changed files
with
627 additions
and
668 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
# This is a combination of 2 commits. | ||
# This is the 1st commit message: | ||
|
||
Replace use-statements with fqdn phpdocs (src) | ||
|
||
# This is the commit message #2: | ||
|
||
#eplace use-statements with fqdn phpdocs | ||
|
||
# Please enter the commit message for your changes. Lines starting | ||
# with '#' will be ignored, and an empty message aborts the commit. | ||
# | ||
# Date: Mon May 27 23:07:53 2024 +0200 | ||
# | ||
# interactive rebase in progress; onto 0ffb51f | ||
# Last commands done (2 commands done): | ||
# reword 6db30c7 Replace use-statements with fqdn phpdocs | ||
# squash 24e0ad6 Replace use-statements with fqdn phpdocs | ||
# No commands remaining. | ||
# You are currently rebasing branch 'style/phpdoc-fqdn' on '0ffb51f'. | ||
# | ||
# Changes to be committed: | ||
# modified: hooks/hook_cron.php | ||
# modified: hooks/hook_federationpage.php | ||
# modified: hooks/hook_frontpage.php | ||
# modified: phpcs.xml | ||
# modified: src/Bridges/SspBridge/Module.php | ||
# modified: src/Controller/AccessTokenController.php | ||
# modified: src/Controller/AuthorizationController.php | ||
# modified: src/Controller/Client/CreateController.php | ||
# modified: src/Controller/Client/DeleteController.php | ||
# modified: src/Controller/Client/EditController.php | ||
# modified: src/Controller/Client/IndexController.php | ||
# modified: src/Controller/Client/ResetSecretController.php | ||
# modified: src/Controller/Client/ShowController.php | ||
# modified: src/Controller/Federation/EntityStatementController.php | ||
# modified: src/Controller/InstallerController.php | ||
# modified: src/Controller/LogoutController.php | ||
# modified: src/Controller/Traits/AuthenticatedGetClientFromRequestTrait.php | ||
# modified: src/Controller/Traits/GetClientFromRequestTrait.php | ||
# modified: src/Controller/Traits/RequestTrait.php | ||
# modified: src/Controller/UserInfoController.php | ||
# modified: src/Entities/AccessTokenEntity.php | ||
# modified: src/Entities/AuthCodeEntity.php | ||
# modified: src/Entities/ClientEntity.php | ||
# modified: src/Entities/RefreshTokenEntity.php | ||
# modified: src/Entities/UserEntity.php | ||
# modified: src/Factories/AuthSimpleFactory.php | ||
# modified: src/Factories/AuthorizationServerFactory.php | ||
# modified: src/Factories/ClaimTranslatorExtractorFactory.php | ||
# modified: src/Factories/FormFactory.php | ||
# modified: src/Factories/ResourceServerFactory.php | ||
# modified: src/Factories/TemplateFactory.php | ||
# modified: src/Forms/ClientForm.php | ||
# modified: src/Forms/Controls/CsrfProtection.php | ||
# modified: src/ModuleConfig.php | ||
# modified: src/Repositories/AbstractDatabaseRepository.php | ||
# modified: src/Repositories/AccessTokenRepository.php | ||
# modified: src/Repositories/AuthCodeRepository.php | ||
# modified: src/Repositories/ClientRepository.php | ||
# modified: src/Repositories/CodeChallengeVerifiersRepository.php | ||
# modified: src/Repositories/Interfaces/AccessTokenRepositoryInterface.php | ||
# modified: src/Repositories/RefreshTokenRepository.php | ||
# modified: src/Repositories/ScopeRepository.php | ||
# modified: src/Repositories/UserRepository.php | ||
# modified: src/Server/AuthorizationServer.php | ||
# modified: src/Server/Exceptions/OidcServerException.php | ||
# modified: src/Server/Grants/AuthCodeGrant.php | ||
# modified: src/Server/Grants/ImplicitGrant.php | ||
# modified: src/Server/Grants/OAuth2ImplicitGrant.php | ||
# modified: src/Server/Grants/RefreshTokenGrant.php | ||
# modified: src/Server/Grants/Traits/IssueAccessTokenTrait.php | ||
# modified: src/Server/LogoutHandlers/BackChannelLogoutHandler.php | ||
# modified: src/Server/ResponseTypes/IdTokenResponse.php | ||
# modified: src/Server/Validators/BearerTokenValidator.php | ||
# modified: src/Services/AuthContextService.php | ||
# modified: src/Services/AuthProcService.php | ||
# modified: src/Services/AuthenticationService.php | ||
# modified: src/Services/DatabaseLegacyOAuth2Import.php | ||
# modified: src/Services/IdTokenBuilder.php | ||
# modified: src/Services/JsonWebKeySetService.php | ||
# modified: src/Services/JsonWebTokenBuilderService.php | ||
# modified: src/Services/LogoutTokenBuilder.php | ||
# modified: src/Services/OpMetadataService.php | ||
# modified: src/Services/RoutingService.php | ||
# modified: src/Services/SessionMessagesService.php | ||
# modified: src/Services/SessionService.php | ||
# modified: src/Stores/Session/LogoutTicketStoreDb.php | ||
# modified: src/Utils/Checker/Interfaces/RequestRuleInterface.php | ||
# modified: src/Utils/Checker/Interfaces/ResultBagInterface.php | ||
# modified: src/Utils/Checker/RequestRulesManager.php | ||
# modified: src/Utils/Checker/ResultBag.php | ||
# modified: src/Utils/Checker/Rules/AcrValuesRule.php | ||
# modified: src/Utils/Checker/Rules/AddClaimsToIdTokenRule.php | ||
# modified: src/Utils/Checker/Rules/CodeChallengeMethodRule.php | ||
# modified: src/Utils/Checker/Rules/CodeChallengeRule.php | ||
# modified: src/Utils/Checker/Rules/IdTokenHintRule.php | ||
# modified: src/Utils/Checker/Rules/MaxAgeRule.php | ||
# modified: src/Utils/Checker/Rules/PostLogoutRedirectUriRule.php | ||
# modified: src/Utils/Checker/Rules/PromptRule.php | ||
# modified: src/Utils/Checker/Rules/RedirectUriRule.php | ||
# modified: src/Utils/Checker/Rules/RequestParameterRule.php | ||
# modified: src/Utils/Checker/Rules/RequestedClaimsRule.php | ||
# modified: src/Utils/Checker/Rules/RequiredNonceRule.php | ||
# modified: src/Utils/Checker/Rules/RequiredOpenIdScopeRule.php | ||
# modified: src/Utils/Checker/Rules/ScopeOfflineAccessRule.php | ||
# modified: src/Utils/Checker/Rules/ScopeRule.php | ||
# modified: src/Utils/ClaimTranslatorExtractor.php | ||
# modified: src/Utils/FingerprintGenerator.php | ||
# modified: src/Utils/ScopeHelper.php | ||
# modified: src/Utils/TimestampGenerator.php | ||
# modified: src/Utils/UniqueIdentifierGenerator.php | ||
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.