Browse Source
update autoload files
Signed-off-by: Julien Veyssier <julien-nc@posteo.net>
pull/40766/head
Julien Veyssier
2 years ago
No known key found for this signature in database
GPG Key ID: 4141FEE162030638
2 changed files with
2 additions and
0 deletions
-
apps/oauth2/composer/composer/autoload_classmap.php
-
apps/oauth2/composer/composer/autoload_static.php
|
|
@ -7,6 +7,7 @@ $baseDir = $vendorDir; |
|
|
|
|
|
|
|
return array( |
|
|
|
'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php', |
|
|
|
'OCA\\OAuth2\\BackgroundJob\\CleanupExpiredAuthorizationCode' => $baseDir . '/../lib/BackgroundJob/CleanupExpiredAuthorizationCode.php', |
|
|
|
'OCA\\OAuth2\\Controller\\LoginRedirectorController' => $baseDir . '/../lib/Controller/LoginRedirectorController.php', |
|
|
|
'OCA\\OAuth2\\Controller\\OauthApiController' => $baseDir . '/../lib/Controller/OauthApiController.php', |
|
|
|
'OCA\\OAuth2\\Controller\\SettingsController' => $baseDir . '/../lib/Controller/SettingsController.php', |
|
|
|
|
|
@ -22,6 +22,7 @@ class ComposerStaticInitOAuth2 |
|
|
|
|
|
|
|
public static $classMap = array ( |
|
|
|
'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php', |
|
|
|
'OCA\\OAuth2\\BackgroundJob\\CleanupExpiredAuthorizationCode' => __DIR__ . '/..' . '/../lib/BackgroundJob/CleanupExpiredAuthorizationCode.php', |
|
|
|
'OCA\\OAuth2\\Controller\\LoginRedirectorController' => __DIR__ . '/..' . '/../lib/Controller/LoginRedirectorController.php', |
|
|
|
'OCA\\OAuth2\\Controller\\OauthApiController' => __DIR__ . '/..' . '/../lib/Controller/OauthApiController.php', |
|
|
|
'OCA\\OAuth2\\Controller\\SettingsController' => __DIR__ . '/..' . '/../lib/Controller/SettingsController.php', |
|
|
|