Skip to content
This repository was archived by the owner on Mar 23, 2024. It is now read-only.

Commit d6a171e

Browse files
committed
🚿
1 parent e8384c6 commit d6a171e

4 files changed

+7
-5
lines changed

examples/OAuthProviderFactory.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ public function __construct(
4343
protected UriFactoryInterface $uriFactory,
4444
protected string $cfgDir = __DIR__.'/../config',
4545
string $envFile = '.env',
46-
string $logLevel = null,
46+
string|null $logLevel = null,
4747
){
48-
ini_set('date.timezone', 'Europe/Amsterdam');
48+
ini_set('date.timezone', 'UTC');
4949

5050
$this->dotEnv = (new DotEnv($this->cfgDir, $envFile, false))->load();
5151
$this->logger = $this->initLogger($logLevel);

examples/provider-example-common.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@
2020
/**
2121
* these vars are supposed to be set before this file is included to ease testing
2222
*
23+
* @var string $CFGDIR - the directory where configuration is stored (.env, cacert, tokens)
2324
* @var string $ENVFILE - the name of the .env file in case it differs from the default
2425
* @var string $ENVVAR - name prefix for the environment variable
25-
* @var string $CFGDIR - the directory where configuration is stored (.env, cacert, tokens)
2626
* @var string $LOGLEVEL - log level for the test logger, use 'none' to suppress logging
2727
* @var array|null $PARAMS - additional params to pass to getAuthURL()
2828
* @var array|null $SCOPES - a set of scopes for the current provider (OAuth2 only)
2929
*/
30+
$CFGDIR ??= __DIR__.'/../config';
3031
$ENVFILE ??= '.env';
3132
$ENVVAR ??= '';
32-
$CFGDIR ??= __DIR__.'/../config';
3333
$LOGLEVEL ??= 'info';
3434
$PARAMS ??= null;
3535
$SCOPES ??= null;

src/Core/OAuthProvider.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ protected function getRequestBody(StreamInterface|array|string $body, RequestInt
315315

316316
}
317317

318-
throw new ProviderException('invalid body/content-type'); // @codeCoverageIgnore
318+
throw new ProviderException('invalid body/content-type');
319319
}
320320

321321
/**

src/OAuthOptionsTrait.php

+2
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ trait OAuthOptionsTrait{
3434
/**
3535
* Whether to start the session when session storage is used
3636
*
37+
* Note: this will only start a session if there is no active session present
38+
*
3739
* @see \chillerlan\OAuth\Storage\SessionStorage
3840
*/
3941
protected bool $sessionStart = true;

0 commit comments

Comments
 (0)