Skip to content
Snippets Groups Projects

WP107 #788: Added boolean as return option for getApiKey method

Merged Imported Cato Kolås requested to merge api-key-missing-error-fix into master
All threads resolved!
2 files
+ 3
3
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -14,10 +14,10 @@ interface ApiConnectorInterface {
/**
* Returns the api key.
*
* @return string|bool
* @return string|false
* The api key.
*/
public function getApiKey(): string|bool;
public function getApiKey(): string|false;
/**
* Returns the base url of the api_connector.
Loading