Skip to content
This repository was archived by the owner on Jan 29, 2020. It is now read-only.

Commit 2780ace

Browse files
committed
Adds configuration skeleton for adapter
1 parent 7b54728 commit 2780ace

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/ConfigProvider.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,18 @@ class ConfigProvider
1212
public function __invoke() : array
1313
{
1414
return [
15+
'authentication' => $this->getAuthenticationConfig(),
1516
'dependencies' => $this->getDependencies(),
1617
];
1718
}
1819

20+
public function getAuthenticationConfig() : array
21+
{
22+
return [
23+
'realm' => '', // Provide the realm string
24+
];
25+
}
26+
1927
public function getDependencies() : array
2028
{
2129
return [

0 commit comments

Comments
 (0)