From cdc02d1247eb9e69ae990e30c772d5aaf096cbb4 Mon Sep 17 00:00:00 2001 From: Stanislav Kutasevits Date: Tue, 28 Oct 2025 12:57:09 +0200 Subject: [PATCH 1/2] Revert "Made DataLookupBase::getCertificate abstract" This reverts commit 721fdc43c0234b35101cb31d7bd402f944e402d7. --- src/Plugin/os2web/DataLookup/DataLookupBase.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Plugin/os2web/DataLookup/DataLookupBase.php b/src/Plugin/os2web/DataLookup/DataLookupBase.php index b4304ca..c2aa0b7 100644 --- a/src/Plugin/os2web/DataLookup/DataLookupBase.php +++ b/src/Plugin/os2web/DataLookup/DataLookupBase.php @@ -145,7 +145,9 @@ public function isReady(): bool { /** * Get certificate. */ - abstract protected function getCertificate(): string; + protected function getCertificate(): string { + return ''; + } /** * Create a temporary file path for a certificate. From 215bb7e1485c4d1081184878ef77f014203c40c7 Mon Sep 17 00:00:00 2001 From: Stanislav Kutasevits Date: Tue, 28 Oct 2025 12:59:39 +0200 Subject: [PATCH 2/2] Updating CHANGELOG --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index dfa8c2b..5651536 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +* Making getCertificate non-abstract. + ## [3.0.0] - 2025-06-18 * [PR-13](https://github.com/OS2web/os2web_datalookup/pull/13)