- Fixed ternary where a false value was provided whenever the env var was empty

This commit is contained in:
Dave Mc Nicoll 2023-11-17 16:01:54 -05:00
parent bea01badb7
commit c026762fdb
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ class Rest implements AdapterInterface
public function setup(array $configuration): void 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'], '/'); $this->url = rtrim($configuration['url'], '/');
foreach([ 'username', 'password', 'token', 'headers', 'options' ] as $conf) { foreach([ 'username', 'password', 'token', 'headers', 'options' ] as $conf) {