From 02d16f4f5e898eaeb890067720a60eb26673af9b Mon Sep 17 00:00:00 2001 From: Daniel Seifert Date: Thu, 28 May 2020 13:32:34 +0200 Subject: [PATCH] fix namespaces --- Application/Model/Documents/deliverynotePdf.php | 2 +- Application/Model/Documents/invoicePdf.php | 2 +- Modules/Application/Model/d3_Order_PdfDocuments.php | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Application/Model/Documents/deliverynotePdf.php b/Application/Model/Documents/deliverynotePdf.php index 08b2e29..09b3088 100644 --- a/Application/Model/Documents/deliverynotePdf.php +++ b/Application/Model/Documents/deliverynotePdf.php @@ -15,7 +15,7 @@ * @link http://www.oxidmodule.com */ -namespace D3\PdfDocuments\Modules\Application\Model\Documents; +namespace D3\PdfDocuments\Application\Model\Documents; use D3\PdfDocuments\Application\Model\AbstractClasses\pdfDocuments_order; diff --git a/Application/Model/Documents/invoicePdf.php b/Application/Model/Documents/invoicePdf.php index 1c9e397..77c0b58 100644 --- a/Application/Model/Documents/invoicePdf.php +++ b/Application/Model/Documents/invoicePdf.php @@ -15,7 +15,7 @@ * @link http://www.oxidmodule.com */ -namespace D3\PdfDocuments\Modules\Application\Model\Documents; +namespace D3\PdfDocuments\Application\Model\Documents; use D3\PdfDocuments\Application\Model\AbstractClasses\pdfDocuments_order; use D3\PdfDocuments\Application\Model\Interfaces\pdfdocuments_orderinvoice_interface; diff --git a/Modules/Application/Model/d3_Order_PdfDocuments.php b/Modules/Application/Model/d3_Order_PdfDocuments.php index 53deaae..06c1064 100644 --- a/Modules/Application/Model/d3_Order_PdfDocuments.php +++ b/Modules/Application/Model/d3_Order_PdfDocuments.php @@ -17,9 +17,9 @@ namespace D3\PdfDocuments\Modules\Application\Model; -use D3\PdfDocuments\Application\Model\Interfaces\pdfdocuments_orderInterface as OrderPdfInterface; -use D3\PdfDocuments\Modules\Application\Model\Documents\invoicePdf; -use D3\PdfDocuments\Modules\Application\Model\Documents\deliverynotePdf; +use D3\PdfDocuments\Application\Model\Interfaces\pdfdocuments_order_interface as OrderPdfInterface; +use D3\PdfDocuments\Application\Model\Documents\invoicePdf; +use D3\PdfDocuments\Application\Model\Documents\deliverynotePdf; use OxidEsales\Eshop\Core\Registry; use Spipu\Html2Pdf\Exception\Html2PdfException;