@@ -17,7 +17,7 @@ |
||
| 17 | 17 | /** |
| 18 | 18 | * @method \Psr\Http\Message\ResponseInterface me() |
| 19 | 19 | */ |
| 20 | -class MicrosoftGraph extends AzureActiveDirectory{ |
|
| 20 | +class MicrosoftGraph extends AzureActiveDirectory { |
|
| 21 | 21 | |
| 22 | 22 | public const SCOPE_USER_READ = 'User.Read'; |
| 23 | 23 | public const SCOPE_USER_READBASIC_ALL = 'User.ReadBasic.All'; |
@@ -14,22 +14,22 @@ |
||
| 14 | 14 | |
| 15 | 15 | use function function_exists, hash, realpath, str_replace, strlen, substr; |
| 16 | 16 | |
| 17 | -if(!function_exists(__NAMESPACE__.'\\getProviders')){ |
|
| 17 | +if (!function_exists(__NAMESPACE__.'\\getProviders')) { |
|
| 18 | 18 | |
| 19 | 19 | function getProviders():array{ |
| 20 | 20 | $providers = []; |
| 21 | 21 | |
| 22 | 22 | /** @var \SplFileInfo $e */ |
| 23 | - foreach(new RecursiveIteratorIterator(new RecursiveDirectoryIterator(__DIR__, FilesystemIterator::SKIP_DOTS)) as $e){ |
|
| 23 | + foreach (new RecursiveIteratorIterator(new RecursiveDirectoryIterator(__DIR__, FilesystemIterator::SKIP_DOTS)) as $e) { |
|
| 24 | 24 | |
| 25 | - if($e->getExtension() !== 'php' || realpath($e->getPath()) === __DIR__){ |
|
| 25 | + if ($e->getExtension() !== 'php' || realpath($e->getPath()) === __DIR__) { |
|
| 26 | 26 | continue; |
| 27 | 27 | } |
| 28 | 28 | |
| 29 | 29 | $class = __NAMESPACE__.str_replace('/', '\\', substr($e->getPathname(), strlen(__DIR__), -4)); |
| 30 | 30 | $r = new ReflectionClass($class); |
| 31 | 31 | |
| 32 | - if(!$r->implementsInterface(OAuthInterface::class) || $r->isAbstract()){ |
|
| 32 | + if (!$r->implementsInterface(OAuthInterface::class) || $r->isAbstract()) { |
|
| 33 | 33 | continue; |
| 34 | 34 | } |
| 35 | 35 | |
@@ -18,7 +18,7 @@ |
||
| 18 | 18 | |
| 19 | 19 | /** |
| 20 | 20 | */ |
| 21 | -abstract class AzureActiveDirectory extends OAuth2Provider implements CSRFToken{ |
|
| 21 | +abstract class AzureActiveDirectory extends OAuth2Provider implements CSRFToken { |
|
| 22 | 22 | |
| 23 | 23 | public const SCOPE_OPENID = 'openid'; |
| 24 | 24 | public const SCOPE_OPENID_EMAIL = 'email'; |
@@ -16,7 +16,7 @@ |
||
| 16 | 16 | |
| 17 | 17 | namespace chillerlan\OAuth\Providers\Amazon; |
| 18 | 18 | |
| 19 | -use chillerlan\OAuth\Core\{CSRFToken, OAuth2Provider, TokenRefresh,}; |
|
| 19 | +use chillerlan\OAuth\Core\{CSRFToken, OAuth2Provider, TokenRefresh, }; |
|
| 20 | 20 | |
| 21 | 21 | /** |
| 22 | 22 | * @method \Psr\Http\Message\ResponseInterface userProfile() |
@@ -21,7 +21,7 @@ |
||
| 21 | 21 | /** |
| 22 | 22 | * @method \Psr\Http\Message\ResponseInterface me() |
| 23 | 23 | */ |
| 24 | -class Google extends OAuth2Provider implements CSRFToken{ |
|
| 24 | +class Google extends OAuth2Provider implements CSRFToken { |
|
| 25 | 25 | |
| 26 | 26 | public const SCOPE_EMAIL = 'email'; |
| 27 | 27 | public const SCOPE_PROFILE = 'profile'; |
@@ -20,7 +20,7 @@ |
||
| 20 | 20 | /** |
| 21 | 21 | * @method \Psr\Http\Message\ResponseInterface me() |
| 22 | 22 | */ |
| 23 | -class Gitter extends OAuth2Provider implements CSRFToken{ |
|
| 23 | +class Gitter extends OAuth2Provider implements CSRFToken { |
|
| 24 | 24 | |
| 25 | 25 | public const SCOPE_FLOW = 'flow'; |
| 26 | 26 | public const SCOPE_PRIVATE = 'private'; |
@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | OAuthStorageInterface $storage, |
| 51 | 51 | SettingsContainerInterface $options, |
| 52 | 52 | LoggerInterface $logger = null |
| 53 | - ){ |
|
| 53 | + ) { |
|
| 54 | 54 | parent::__construct($http, $storage, $options, $logger); |
| 55 | 55 | |
| 56 | 56 | $this->setRegion('eu'); |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | public function setRegion(string $region):BattleNet{ |
| 66 | 66 | $region = strtolower($region); |
| 67 | 67 | |
| 68 | - if(!in_array($region, ['apac', 'cn', 'eu', 'us'], true)){ |
|
| 68 | + if (!in_array($region, ['apac', 'cn', 'eu', 'us'], true)) { |
|
| 69 | 69 | throw new ProviderException('invalid region: '.$region); |
| 70 | 70 | } |
| 71 | 71 | |
@@ -15,7 +15,7 @@ |
||
| 15 | 15 | |
| 16 | 16 | use chillerlan\OAuth\MagicAPI\EndpointMap; |
| 17 | 17 | |
| 18 | -class GuildWars2Endpoints extends EndpointMap{ |
|
| 18 | +class GuildWars2Endpoints extends EndpointMap { |
|
| 19 | 19 | |
| 20 | 20 | protected array $account = [ |
| 21 | 21 | 'path' => '/account', |
@@ -17,7 +17,7 @@ |
||
| 17 | 17 | /** |
| 18 | 18 | * @link https://www.deviantart.com/developers/http/v1/20160316 |
| 19 | 19 | */ |
| 20 | -class DeviantArtEndpoints extends EndpointMap{ |
|
| 20 | +class DeviantArtEndpoints extends EndpointMap { |
|
| 21 | 21 | |
| 22 | 22 | protected array $whoami = [ |
| 23 | 23 | 'path' => '/user/whoami', |