From 67e4ab9dfca8a5cf647b4204c6534546d029706a Mon Sep 17 00:00:00 2001
From: Jacek Kowalski <Jacek@jacekk.info>
Date: Tue, 17 Mar 2026 09:29:49 +0000
Subject: [PATCH] Rename attribute "KSeF QR Code" to "QR Code Generator URL"
---
src/Synchronizer.php | 16 ++++++++++++----
1 files changed, 12 insertions(+), 4 deletions(-)
diff --git a/src/Synchronizer.php b/src/Synchronizer.php
index 7aeda66..58e04f1 100644
--- a/src/Synchronizer.php
+++ b/src/Synchronizer.php
@@ -3,19 +3,27 @@
namespace SIPL\UCRM\wFirma;
abstract class Synchronizer {
- protected $wfirma;
- protected $helper;
+ protected \Webit\WFirmaSDK\Entity\ModuleApiFactory $wfirma;
+ protected UcrmHelper $helper;
function __construct(\Webit\WFirmaSDK\Entity\ModuleApiFactory $wFirmaApi, UcrmHelper $ucrmHelper) {
$this->wfirma = $wFirmaApi;
$this->helper = $ucrmHelper;
}
- public function synchronize(int $entityId) {
+ /**
+ * @param int $entityId
+ * @return bool TRUE if anything was modified, FALSE otherwise
+ */
+ public function synchronize(int $entityId): bool {
return FALSE;
}
- public function delete(array $entity) {
+ /**
+ * @param array $entity
+ * @return bool TRUE if anything was deleted, FALSE otherwise
+ */
+ public function delete(array $entity): bool {
return FALSE;
}
}
--
Gitblit v1.10.0