From ec5e69fb1deef93479fd94639fb01e3ed26ec264 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 15 Feb 2018 20:27:23 +0100 Subject: [PATCH] Fix strict_types --- Admin/Install/Navigation.php | 2 +- Admin/Installer.php | 2 +- Admin/Status.php | 2 +- Admin/Uninstaller.php | 2 +- Admin/Updater.php | 2 +- Controller.php | 2 +- Models/AccountAbstract.php | 2 +- Models/AccountType.php | 2 +- Models/Balance.php | 2 +- Models/BatchPosting.php | 2 +- Models/Creditor.php | 2 +- Models/CreditorAccount.php | 2 +- Models/Debitor.php | 2 +- Models/DebitorAccount.php | 2 +- Models/EntryInterface.php | 2 +- Models/ImpersonalAccount.php | 2 +- Models/IncomeStatement.php | 2 +- Models/InvoicePosting.php | 2 +- Models/InvoicePostingSimple.php | 2 +- Models/PersonalAccountAbstract.php | 2 +- Models/Posting.php | 2 +- Models/PostingAbstract.php | 2 +- Models/PostingInterface.php | 2 +- Models/TimeRangeType.php | 2 +- 24 files changed, 24 insertions(+), 24 deletions(-) diff --git a/Admin/Install/Navigation.php b/Admin/Install/Navigation.php index 15bd8f4..d16149e 100644 --- a/Admin/Install/Navigation.php +++ b/Admin/Install/Navigation.php @@ -10,7 +10,7 @@ * @version 1.0.0 * @link http://website.orange-management.de */ -declare(strict_types = 1); +declare(strict_types=1); namespace Modules\Accounting\Admin\Install; diff --git a/Admin/Installer.php b/Admin/Installer.php index c9a3968..d7db648 100644 --- a/Admin/Installer.php +++ b/Admin/Installer.php @@ -10,7 +10,7 @@ * @version 1.0.0 * @link http://website.orange-management.de */ -declare(strict_types = 1); +declare(strict_types=1); namespace Modules\Accounting\Admin; diff --git a/Admin/Status.php b/Admin/Status.php index 08c5e76..2841c69 100644 --- a/Admin/Status.php +++ b/Admin/Status.php @@ -10,7 +10,7 @@ * @version 1.0.0 * @link http://website.orange-management.de */ -declare(strict_types = 1); +declare(strict_types=1); namespace Modules\Accounting\Admin; diff --git a/Admin/Uninstaller.php b/Admin/Uninstaller.php index f26896d..4c76ae3 100644 --- a/Admin/Uninstaller.php +++ b/Admin/Uninstaller.php @@ -10,7 +10,7 @@ * @version 1.0.0 * @link http://website.orange-management.de */ -declare(strict_types = 1); +declare(strict_types=1); namespace Modules\Accounting\Admin; diff --git a/Admin/Updater.php b/Admin/Updater.php index fcea225..9803ad0 100644 --- a/Admin/Updater.php +++ b/Admin/Updater.php @@ -10,7 +10,7 @@ * @version 1.0.0 * @link http://website.orange-management.de */ -declare(strict_types = 1); +declare(strict_types=1); namespace Modules\Accounting\Admin; diff --git a/Controller.php b/Controller.php index 276964e..935e010 100644 --- a/Controller.php +++ b/Controller.php @@ -10,7 +10,7 @@ * @version 1.0.0 * @link http://website.orange-management.de */ -declare(strict_types = 1); +declare(strict_types=1); namespace Modules\Accounting; diff --git a/Models/AccountAbstract.php b/Models/AccountAbstract.php index 28be08a..9f3fbe3 100644 --- a/Models/AccountAbstract.php +++ b/Models/AccountAbstract.php @@ -10,7 +10,7 @@ * @version 1.0.0 * @link http://website.orange-management.de */ -declare(strict_types = 1); +declare(strict_types=1); namespace Modules\Accounting\Models; diff --git a/Models/AccountType.php b/Models/AccountType.php index 886ea1b..372ca99 100644 --- a/Models/AccountType.php +++ b/Models/AccountType.php @@ -10,7 +10,7 @@ * @version 1.0.0 * @link http://website.orange-management.de */ -declare(strict_types = 1); +declare(strict_types=1); namespace Modules\Accounting\Models; diff --git a/Models/Balance.php b/Models/Balance.php index e4ac8b5..d680c2e 100644 --- a/Models/Balance.php +++ b/Models/Balance.php @@ -10,7 +10,7 @@ * @version 1.0.0 * @link http://website.orange-management.de */ -declare(strict_types = 1); +declare(strict_types=1); namespace Modules\Accounting\Models; diff --git a/Models/BatchPosting.php b/Models/BatchPosting.php index 75a0a66..4c14bab 100644 --- a/Models/BatchPosting.php +++ b/Models/BatchPosting.php @@ -10,7 +10,7 @@ * @version 1.0.0 * @link http://website.orange-management.de */ -declare(strict_types = 1); +declare(strict_types=1); namespace Modules\Accounting\Models; diff --git a/Models/Creditor.php b/Models/Creditor.php index bff4f89..58b56f7 100644 --- a/Models/Creditor.php +++ b/Models/Creditor.php @@ -10,7 +10,7 @@ * @version 1.0.0 * @link http://website.orange-management.de */ -declare(strict_types = 1); +declare(strict_types=1); namespace Modules\Accounting\Models; diff --git a/Models/CreditorAccount.php b/Models/CreditorAccount.php index 88f7d6b..18c9708 100644 --- a/Models/CreditorAccount.php +++ b/Models/CreditorAccount.php @@ -10,7 +10,7 @@ * @version 1.0.0 * @link http://website.orange-management.de */ -declare(strict_types = 1); +declare(strict_types=1); namespace Modules\Accounting\Models; diff --git a/Models/Debitor.php b/Models/Debitor.php index 826766f..f84f016 100644 --- a/Models/Debitor.php +++ b/Models/Debitor.php @@ -10,7 +10,7 @@ * @version 1.0.0 * @link http://website.orange-management.de */ -declare(strict_types = 1); +declare(strict_types=1); namespace Modules\Accounting\Models; diff --git a/Models/DebitorAccount.php b/Models/DebitorAccount.php index 103413b..3374ef4 100644 --- a/Models/DebitorAccount.php +++ b/Models/DebitorAccount.php @@ -10,7 +10,7 @@ * @version 1.0.0 * @link http://website.orange-management.de */ -declare(strict_types = 1); +declare(strict_types=1); namespace Modules\Accounting\Models; diff --git a/Models/EntryInterface.php b/Models/EntryInterface.php index 4d44c31..89cb2e9 100644 --- a/Models/EntryInterface.php +++ b/Models/EntryInterface.php @@ -10,7 +10,7 @@ * @version 1.0.0 * @link http://website.orange-management.de */ -declare(strict_types = 1); +declare(strict_types=1); namespace Modules\Accounting\Models; diff --git a/Models/ImpersonalAccount.php b/Models/ImpersonalAccount.php index 3b175ca..9138731 100644 --- a/Models/ImpersonalAccount.php +++ b/Models/ImpersonalAccount.php @@ -10,7 +10,7 @@ * @version 1.0.0 * @link http://website.orange-management.de */ -declare(strict_types = 1); +declare(strict_types=1); namespace Modules\Accounting\Models; diff --git a/Models/IncomeStatement.php b/Models/IncomeStatement.php index 68bc164..acafdf8 100644 --- a/Models/IncomeStatement.php +++ b/Models/IncomeStatement.php @@ -10,7 +10,7 @@ * @version 1.0.0 * @link http://website.orange-management.de */ -declare(strict_types = 1); +declare(strict_types=1); namespace Modules\Accounting\Models; diff --git a/Models/InvoicePosting.php b/Models/InvoicePosting.php index 5f5af6f..56a390b 100644 --- a/Models/InvoicePosting.php +++ b/Models/InvoicePosting.php @@ -10,7 +10,7 @@ * @version 1.0.0 * @link http://website.orange-management.de */ -declare(strict_types = 1); +declare(strict_types=1); namespace Modules\Accounting\Models; diff --git a/Models/InvoicePostingSimple.php b/Models/InvoicePostingSimple.php index f778552..8d8ceca 100644 --- a/Models/InvoicePostingSimple.php +++ b/Models/InvoicePostingSimple.php @@ -10,7 +10,7 @@ * @version 1.0.0 * @link http://website.orange-management.de */ -declare(strict_types = 1); +declare(strict_types=1); namespace Modules\Accounting\Models; diff --git a/Models/PersonalAccountAbstract.php b/Models/PersonalAccountAbstract.php index 7cc7b93..dc08ea4 100644 --- a/Models/PersonalAccountAbstract.php +++ b/Models/PersonalAccountAbstract.php @@ -10,7 +10,7 @@ * @version 1.0.0 * @link http://website.orange-management.de */ -declare(strict_types = 1); +declare(strict_types=1); namespace Modules\Accounting\Models; diff --git a/Models/Posting.php b/Models/Posting.php index 0354ec9..7086509 100644 --- a/Models/Posting.php +++ b/Models/Posting.php @@ -10,7 +10,7 @@ * @version 1.0.0 * @link http://website.orange-management.de */ -declare(strict_types = 1); +declare(strict_types=1); namespace Modules\Accounting\Models; diff --git a/Models/PostingAbstract.php b/Models/PostingAbstract.php index d65323f..4529941 100644 --- a/Models/PostingAbstract.php +++ b/Models/PostingAbstract.php @@ -10,7 +10,7 @@ * @version 1.0.0 * @link http://website.orange-management.de */ -declare(strict_types = 1); +declare(strict_types=1); namespace Modules\Accounting\Models; diff --git a/Models/PostingInterface.php b/Models/PostingInterface.php index 6e3a283..765dc08 100644 --- a/Models/PostingInterface.php +++ b/Models/PostingInterface.php @@ -10,7 +10,7 @@ * @version 1.0.0 * @link http://website.orange-management.de */ -declare(strict_types = 1); +declare(strict_types=1); namespace Modules\Accounting\Models; diff --git a/Models/TimeRangeType.php b/Models/TimeRangeType.php index f92fde2..f00c802 100644 --- a/Models/TimeRangeType.php +++ b/Models/TimeRangeType.php @@ -10,7 +10,7 @@ * @version 1.0.0 * @link http://website.orange-management.de */ -declare(strict_types = 1); +declare(strict_types=1); namespace Modules\Accounting\Models;