|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
// autoload_static.php @generated by Composer |
|
4
|
|
|
|
|
5
|
|
|
namespace Composer\Autoload; |
|
6
|
|
|
|
|
7
|
|
|
class ComposerStaticInitOAuth2 |
|
8
|
|
|
{ |
|
9
|
|
|
public static $prefixLengthsPsr4 = array ( |
|
10
|
|
|
'O' => |
|
11
|
|
|
array ( |
|
12
|
|
|
'OCA\\OAuth2\\' => 11, |
|
13
|
|
|
), |
|
14
|
|
|
); |
|
15
|
|
|
|
|
16
|
|
|
public static $prefixDirsPsr4 = array ( |
|
17
|
|
|
'OCA\\OAuth2\\' => |
|
18
|
|
|
array ( |
|
19
|
|
|
0 => __DIR__ . '/..' . '/../lib', |
|
20
|
|
|
), |
|
21
|
|
|
); |
|
22
|
|
|
|
|
23
|
|
|
public static $classMap = array ( |
|
24
|
|
|
'OCA\\OAuth2\\Controller\\LoginRedirectorController' => __DIR__ . '/..' . '/../lib/Controller/LoginRedirectorController.php', |
|
25
|
|
|
'OCA\\OAuth2\\Controller\\OauthApiController' => __DIR__ . '/..' . '/../lib/Controller/OauthApiController.php', |
|
26
|
|
|
'OCA\\OAuth2\\Controller\\SettingsController' => __DIR__ . '/..' . '/../lib/Controller/SettingsController.php', |
|
27
|
|
|
'OCA\\OAuth2\\Db\\AccessToken' => __DIR__ . '/..' . '/../lib/Db/AccessToken.php', |
|
28
|
|
|
'OCA\\OAuth2\\Db\\AccessTokenMapper' => __DIR__ . '/..' . '/../lib/Db/AccessTokenMapper.php', |
|
29
|
|
|
'OCA\\OAuth2\\Db\\Client' => __DIR__ . '/..' . '/../lib/Db/Client.php', |
|
30
|
|
|
'OCA\\OAuth2\\Db\\ClientMapper' => __DIR__ . '/..' . '/../lib/Db/ClientMapper.php', |
|
31
|
|
|
'OCA\\OAuth2\\Exceptions\\AccessTokenNotFoundException' => __DIR__ . '/..' . '/../lib/Exceptions/AccessTokenNotFoundException.php', |
|
32
|
|
|
'OCA\\OAuth2\\Exceptions\\ClientNotFoundException' => __DIR__ . '/..' . '/../lib/Exceptions/ClientNotFoundException.php', |
|
33
|
|
|
'OCA\\OAuth2\\Settings\\Admin' => __DIR__ . '/..' . '/../lib/Settings/Admin.php', |
|
34
|
|
|
); |
|
35
|
|
|
|
|
36
|
|
|
public static function getInitializer(ClassLoader $loader) |
|
37
|
|
|
{ |
|
38
|
|
|
return \Closure::bind(function () use ($loader) { |
|
39
|
|
|
$loader->prefixLengthsPsr4 = ComposerStaticInitOAuth2::$prefixLengthsPsr4; |
|
|
|
|
|
|
40
|
|
|
$loader->prefixDirsPsr4 = ComposerStaticInitOAuth2::$prefixDirsPsr4; |
|
|
|
|
|
|
41
|
|
|
$loader->classMap = ComposerStaticInitOAuth2::$classMap; |
|
|
|
|
|
|
42
|
|
|
|
|
43
|
|
|
}, null, ClassLoader::class); |
|
44
|
|
|
} |
|
45
|
|
|
} |
|
46
|
|
|
|
This check looks for access to properties that are not accessible from the current context.
If you need to make a property accessible to another context you can either raise its visibility level or provide an accessible getter in the defining class.