From 5eb741252a6b31dcdf001dc0cce83632527c50b9 Mon Sep 17 00:00:00 2001 From: Henning <leutz@pcsg.de> Date: Sun, 16 Feb 2025 10:11:42 +0100 Subject: [PATCH] refactor(phpcs): remove unused imports in Invoice/Factory.php This commit removes redundant import statements from the `Invoice/Factory.php` file for cleaner, more efficient code. The removed imports are `QUI\Interfaces\Users\User` which was not used in the file. --- src/QUI/ERP/Accounting/Invoice/Factory.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/QUI/ERP/Accounting/Invoice/Factory.php b/src/QUI/ERP/Accounting/Invoice/Factory.php index 49a0343..336682b 100644 --- a/src/QUI/ERP/Accounting/Invoice/Factory.php +++ b/src/QUI/ERP/Accounting/Invoice/Factory.php @@ -7,11 +7,8 @@ namespace QUI\ERP\Accounting\Invoice; use QUI; - use QUI\Database\Exception; -use QUI\Interfaces\Users\User; - use function json_encode; /** -- GitLab