diff --git a/src/QUI/ERP/Accounting/ArticleList.php b/src/QUI/ERP/Accounting/ArticleList.php index 3409713d9404e31eb6a0e6f594689d658aa93048..fe31ee4fc461954242ec7d8c93d377ee64eba6e5 100644 --- a/src/QUI/ERP/Accounting/ArticleList.php +++ b/src/QUI/ERP/Accounting/ArticleList.php @@ -552,8 +552,7 @@ public function renderForMail(): string public function toHTMLWithCSS( bool|string $template = false, bool|string $articleTemplate = false - ): string - { + ): string { return $this->toUniqueList()->toHTMLWithCSS($template, $articleTemplate); } diff --git a/src/QUI/ERP/Accounting/ArticleListUnique.php b/src/QUI/ERP/Accounting/ArticleListUnique.php index 05254629eb9d6fcc25c7514c72104b45052bb181..64a421da958d26f9e55702a6fa9f35ce0c0a107f 100644 --- a/src/QUI/ERP/Accounting/ArticleListUnique.php +++ b/src/QUI/ERP/Accounting/ArticleListUnique.php @@ -560,8 +560,7 @@ public function toMailHTML(): string public function toHTMLWithCSS( bool|string $template = false, bool|string $articleTemplate = false - ): string - { + ): string { $style = '<style>'; $style .= file_get_contents(dirname(__FILE__) . '/ArticleList.css'); $style .= '</style>'; @@ -581,8 +580,7 @@ public function toHTMLWithCSS( public function render( bool|string $template = false, bool|string $articleTemplate = false - ): string - { + ): string { return $this->toHTMLWithCSS($template, $articleTemplate); } diff --git a/src/QUI/ERP/Accounting/Calc.php b/src/QUI/ERP/Accounting/Calc.php index 7d36657777a3777eac00d5952efcb641ea44c6b8..fa79929ed8850e317d3a60454aabbfd4aac98df6 100644 --- a/src/QUI/ERP/Accounting/Calc.php +++ b/src/QUI/ERP/Accounting/Calc.php @@ -14,7 +14,6 @@ use QUI\ERP\Currency\Currency; use QUI\ERP\Money\Price; use QUI\Interfaces\Users\User as UserInterface; - use QUI\Locale; use function array_map;