From 9d60fd0c5ef9c520485e290d4137453664e6b73c Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sat, 3 Feb 2018 11:46:23 +0100 Subject: [PATCH] Add spaces around namespace --- Admin/Activate.php | 1 + Admin/Deactivate.php | 1 + Admin/Install/Navigation.php | 2 ++ Admin/Installer.php | 1 + Admin/Uninstall.php | 1 + Admin/Update.php | 1 + Controller.php | 1 + Models/AccountAbstract.php | 1 + Models/AccountType.php | 1 + Models/Balance.php | 1 + Models/BatchPosting.php | 1 + Models/Creditor.php | 1 + Models/CreditorAccount.php | 1 + Models/Debitor.php | 1 + Models/DebitorAccount.php | 1 + Models/EntryInterface.php | 1 + Models/ImpersonalAccount.php | 1 + Models/IncomeStatement.php | 1 + Models/InvoicePosting.php | 1 + Models/InvoicePostingSimple.php | 1 + Models/PersonalAccountAbstract.php | 1 + Models/Posting.php | 1 + Models/PostingAbstract.php | 1 + Models/PostingInterface.php | 1 + Models/TimeRangeType.php | 1 + 25 files changed, 26 insertions(+) diff --git a/Admin/Activate.php b/Admin/Activate.php index b512a15..cd1c0a7 100644 --- a/Admin/Activate.php +++ b/Admin/Activate.php @@ -11,6 +11,7 @@ * @link http://website.orange-management.de */ declare(strict_types = 1); + namespace Modules\Accounting\Admin; use phpOMS\DataStorage\Database\DatabasePool; diff --git a/Admin/Deactivate.php b/Admin/Deactivate.php index e207166..07612a8 100644 --- a/Admin/Deactivate.php +++ b/Admin/Deactivate.php @@ -11,6 +11,7 @@ * @link http://website.orange-management.de */ declare(strict_types = 1); + namespace Modules\Accounting\Admin; use phpOMS\DataStorage\Database\DatabasePool; diff --git a/Admin/Install/Navigation.php b/Admin/Install/Navigation.php index 90a6d35..15bd8f4 100644 --- a/Admin/Install/Navigation.php +++ b/Admin/Install/Navigation.php @@ -11,7 +11,9 @@ * @link http://website.orange-management.de */ declare(strict_types = 1); + namespace Modules\Accounting\Admin\Install; + use phpOMS\DataStorage\Database\DatabasePool; /** diff --git a/Admin/Installer.php b/Admin/Installer.php index 59038c8..c9a3968 100644 --- a/Admin/Installer.php +++ b/Admin/Installer.php @@ -11,6 +11,7 @@ * @link http://website.orange-management.de */ declare(strict_types = 1); + namespace Modules\Accounting\Admin; use phpOMS\DataStorage\Database\DatabaseType; diff --git a/Admin/Uninstall.php b/Admin/Uninstall.php index c956c2c..4a11b94 100644 --- a/Admin/Uninstall.php +++ b/Admin/Uninstall.php @@ -11,6 +11,7 @@ * @link http://website.orange-management.de */ declare(strict_types = 1); + namespace Modules\Accounting\Admin; use phpOMS\DataStorage\Database\DatabasePool; diff --git a/Admin/Update.php b/Admin/Update.php index 1caa5c8..bd2cfa8 100644 --- a/Admin/Update.php +++ b/Admin/Update.php @@ -11,6 +11,7 @@ * @link http://website.orange-management.de */ declare(strict_types = 1); + namespace Modules\Accounting\Admin; use phpOMS\DataStorage\Database\DatabasePool; diff --git a/Controller.php b/Controller.php index 122832b..276964e 100644 --- a/Controller.php +++ b/Controller.php @@ -11,6 +11,7 @@ * @link http://website.orange-management.de */ declare(strict_types = 1); + namespace Modules\Accounting; use Modules\Navigation\Models\Navigation; diff --git a/Models/AccountAbstract.php b/Models/AccountAbstract.php index d6f92ec..8e59971 100644 --- a/Models/AccountAbstract.php +++ b/Models/AccountAbstract.php @@ -11,6 +11,7 @@ * @link http://website.orange-management.de */ declare(strict_types = 1); + namespace Modules\Accounting\Models; diff --git a/Models/AccountType.php b/Models/AccountType.php index fb0eb83..758dc63 100644 --- a/Models/AccountType.php +++ b/Models/AccountType.php @@ -11,6 +11,7 @@ * @link http://website.orange-management.de */ declare(strict_types = 1); + namespace Modules\Accounting\Models; use phpOMS\Stdlib\Base\Enum; diff --git a/Models/Balance.php b/Models/Balance.php index fcba34a..e4ac8b5 100644 --- a/Models/Balance.php +++ b/Models/Balance.php @@ -11,6 +11,7 @@ * @link http://website.orange-management.de */ declare(strict_types = 1); + namespace Modules\Accounting\Models; use phpOMS\Utils\IO\ExchangeInterface; diff --git a/Models/BatchPosting.php b/Models/BatchPosting.php index 59976cb..75a0a66 100644 --- a/Models/BatchPosting.php +++ b/Models/BatchPosting.php @@ -11,6 +11,7 @@ * @link http://website.orange-management.de */ declare(strict_types = 1); + namespace Modules\Accounting\Models; /** diff --git a/Models/Creditor.php b/Models/Creditor.php index a7d2bc0..bff4f89 100644 --- a/Models/Creditor.php +++ b/Models/Creditor.php @@ -11,6 +11,7 @@ * @link http://website.orange-management.de */ declare(strict_types = 1); + namespace Modules\Accounting\Models; /** diff --git a/Models/CreditorAccount.php b/Models/CreditorAccount.php index 6d4ac3b..88f7d6b 100644 --- a/Models/CreditorAccount.php +++ b/Models/CreditorAccount.php @@ -11,6 +11,7 @@ * @link http://website.orange-management.de */ declare(strict_types = 1); + namespace Modules\Accounting\Models; use Modules\Accounting\Models\PersonalAccountAbstract; diff --git a/Models/Debitor.php b/Models/Debitor.php index 0250f6d..826766f 100644 --- a/Models/Debitor.php +++ b/Models/Debitor.php @@ -11,6 +11,7 @@ * @link http://website.orange-management.de */ declare(strict_types = 1); + namespace Modules\Accounting\Models; /** diff --git a/Models/DebitorAccount.php b/Models/DebitorAccount.php index 2ad721a..103413b 100644 --- a/Models/DebitorAccount.php +++ b/Models/DebitorAccount.php @@ -11,6 +11,7 @@ * @link http://website.orange-management.de */ declare(strict_types = 1); + namespace Modules\Accounting\Models; use Modules\Accounting\Models\PersonalAccountAbstract; diff --git a/Models/EntryInterface.php b/Models/EntryInterface.php index 6ab89c2..4d44c31 100644 --- a/Models/EntryInterface.php +++ b/Models/EntryInterface.php @@ -11,6 +11,7 @@ * @link http://website.orange-management.de */ declare(strict_types = 1); + namespace Modules\Accounting\Models; /** diff --git a/Models/ImpersonalAccount.php b/Models/ImpersonalAccount.php index 94aa8ac..3b175ca 100644 --- a/Models/ImpersonalAccount.php +++ b/Models/ImpersonalAccount.php @@ -11,6 +11,7 @@ * @link http://website.orange-management.de */ declare(strict_types = 1); + namespace Modules\Accounting\Models; use phpOMS\Utils\IO\ExchangeInterface; diff --git a/Models/IncomeStatement.php b/Models/IncomeStatement.php index 8936ac3..68bc164 100644 --- a/Models/IncomeStatement.php +++ b/Models/IncomeStatement.php @@ -11,6 +11,7 @@ * @link http://website.orange-management.de */ declare(strict_types = 1); + namespace Modules\Accounting\Models; /** diff --git a/Models/InvoicePosting.php b/Models/InvoicePosting.php index 771536b..5f5af6f 100644 --- a/Models/InvoicePosting.php +++ b/Models/InvoicePosting.php @@ -11,6 +11,7 @@ * @link http://website.orange-management.de */ declare(strict_types = 1); + namespace Modules\Accounting\Models; /** diff --git a/Models/InvoicePostingSimple.php b/Models/InvoicePostingSimple.php index d0f48e5..f778552 100644 --- a/Models/InvoicePostingSimple.php +++ b/Models/InvoicePostingSimple.php @@ -11,6 +11,7 @@ * @link http://website.orange-management.de */ declare(strict_types = 1); + namespace Modules\Accounting\Models; /** diff --git a/Models/PersonalAccountAbstract.php b/Models/PersonalAccountAbstract.php index 106bb19..7cc7b93 100644 --- a/Models/PersonalAccountAbstract.php +++ b/Models/PersonalAccountAbstract.php @@ -11,6 +11,7 @@ * @link http://website.orange-management.de */ declare(strict_types = 1); + namespace Modules\Accounting\Models; /** diff --git a/Models/Posting.php b/Models/Posting.php index 6da9d47..0354ec9 100644 --- a/Models/Posting.php +++ b/Models/Posting.php @@ -11,6 +11,7 @@ * @link http://website.orange-management.de */ declare(strict_types = 1); + namespace Modules\Accounting\Models; /** diff --git a/Models/PostingAbstract.php b/Models/PostingAbstract.php index c2e3ccb..d65323f 100644 --- a/Models/PostingAbstract.php +++ b/Models/PostingAbstract.php @@ -11,6 +11,7 @@ * @link http://website.orange-management.de */ declare(strict_types = 1); + namespace Modules\Accounting\Models; /** diff --git a/Models/PostingInterface.php b/Models/PostingInterface.php index 74b55cc..6e3a283 100644 --- a/Models/PostingInterface.php +++ b/Models/PostingInterface.php @@ -11,6 +11,7 @@ * @link http://website.orange-management.de */ declare(strict_types = 1); + namespace Modules\Accounting\Models; /** diff --git a/Models/TimeRangeType.php b/Models/TimeRangeType.php index 16ba3b1..f92fde2 100644 --- a/Models/TimeRangeType.php +++ b/Models/TimeRangeType.php @@ -11,6 +11,7 @@ * @link http://website.orange-management.de */ declare(strict_types = 1); + namespace Modules\Accounting\Models; use phpOMS\Stdlib\Base\Enum;