[core] Add configuration for bridges, allowing private bridges (#1343)

This commit is contained in:
Lyra 2020-12-12 17:05:22 +01:00 committed by GitHub
parent 56b2c516e4
commit 810a2503c9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 70 additions and 6 deletions

View file

@ -58,6 +58,19 @@ interface BridgeInterface {
*/
public function collectData();
/**
* Get the user's supplied configuration for the bridge
*/
public function getConfiguration();
/**
* Returns the value for the selected configuration
*
* @param string $input The option name
* @return mixed|null The option value or null if the input is not defined
*/
public function getOption($name);
/**
* Returns the description
*