From c49defb78ca94536c80ff58fce26d7a90ec5ed29 Mon Sep 17 00:00:00 2001
From: Henning <leutz@pcsg.de>
Date: Sat, 22 Feb 2025 11:59:01 +0100
Subject: [PATCH] fix: update `getCustomerFiles` method signature in
 `AbstractOrder`

Updated the `getCustomerFiles` method signature in `AbstractOrder.php` to accept an optional
boolean parameter `$parsing`. Method can now be customized to return parsed file information or raw
data.
---
 src/QUI/ERP/Order/AbstractOrder.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/QUI/ERP/Order/AbstractOrder.php b/src/QUI/ERP/Order/AbstractOrder.php
index 9d80675b..fdb8e9b2 100644
--- a/src/QUI/ERP/Order/AbstractOrder.php
+++ b/src/QUI/ERP/Order/AbstractOrder.php
@@ -2321,7 +2321,7 @@ public function clearCustomerFiles(): void
         // TODO: Implement clearCustomerFiles() method.
     }
 
-    public function getCustomerFiles(): array
+    public function getCustomerFiles(bool $parsing = false): array
     {
         // TODO: Implement getCustomerFiles() method.
         return [];
-- 
GitLab