From 1e95f6364f9222063369b7a83e67a4abb66a0019 Mon Sep 17 00:00:00 2001 From: Nathaniel Catchpole Date: Mon, 15 Sep 2014 11:19:53 +0100 Subject: [PATCH] Issue #2337591 by swentel, mikeker: Fixed Install failure on Windows: ThirdPartySettingsTrait::getThirdPartySetting not compatible with ThirdPartySettingsInterface::getThirdPartySetting error during install. --- .../Drupal/Core/Config/Entity/ThirdPartySettingsInterface.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/lib/Drupal/Core/Config/Entity/ThirdPartySettingsInterface.php b/core/lib/Drupal/Core/Config/Entity/ThirdPartySettingsInterface.php index ae5f0bd2aa7..88e032b79c2 100644 --- a/core/lib/Drupal/Core/Config/Entity/ThirdPartySettingsInterface.php +++ b/core/lib/Drupal/Core/Config/Entity/ThirdPartySettingsInterface.php @@ -44,7 +44,7 @@ interface ThirdPartySettingsInterface { * @return mixed * The value. */ - public function getThirdPartySetting($module, $key, $default); + public function getThirdPartySetting($module, $key, $default = NULL); /** * Unsets a third-party setting.