From 52640c643a35211788b45e9a210f31f7c87141fb 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 + 7 files changed, 8 insertions(+) diff --git a/Admin/Activate.php b/Admin/Activate.php index e09691b..0ae4e12 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\MyPrivate\Admin; use phpOMS\DataStorage\Database\DatabasePool; diff --git a/Admin/Deactivate.php b/Admin/Deactivate.php index be60fbc..268c232 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\MyPrivate\Admin; use phpOMS\DataStorage\Database\DatabasePool; diff --git a/Admin/Install/Navigation.php b/Admin/Install/Navigation.php index 73264ce..a9a2f29 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\MyPrivate\Admin\Install; + use phpOMS\DataStorage\Database\DatabasePool; /** diff --git a/Admin/Installer.php b/Admin/Installer.php index 79cc6d8..71bdb43 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\MyPrivate\Admin; use phpOMS\DataStorage\Database\DatabaseType; diff --git a/Admin/Uninstall.php b/Admin/Uninstall.php index 8a8dee1..446a7af 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\MyPrivate\Admin; use phpOMS\DataStorage\Database\DatabasePool; diff --git a/Admin/Update.php b/Admin/Update.php index 6aa8e2a..21cabe9 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\MyPrivate\Admin; use phpOMS\DataStorage\Database\DatabasePool; diff --git a/Controller.php b/Controller.php index 157dd7b..42413ad 100644 --- a/Controller.php +++ b/Controller.php @@ -11,6 +11,7 @@ * @link http://website.orange-management.de */ declare(strict_types = 1); + namespace Modules\MyPrivate; use phpOMS\Message\RequestAbstract;