- Fixed ternary where a false value was provided whenever the env var was empty
This commit is contained in:
parent
bea01badb7
commit
c026762fdb
|
@ -39,7 +39,7 @@ class Rest implements AdapterInterface
|
|||
|
||||
public function setup(array $configuration): void
|
||||
{
|
||||
$this->auth = AuthenticationEnum::from($configuration['auth'] ?? AuthenticationEnum::Basic->value);
|
||||
$this->auth = AuthenticationEnum::from($configuration['auth'] ?: AuthenticationEnum::Basic->value);
|
||||
$this->url = rtrim($configuration['url'], '/');
|
||||
|
||||
foreach([ 'username', 'password', 'token', 'headers', 'options' ] as $conf) {
|
||||
|
|
Loading…
Reference in New Issue