From 6752b01e1f76aafddbfad6f66cb61d912572cab0 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 12 Sep 2019 19:48:00 +0200 Subject: [PATCH] fix phpcs findings --- Admin/Install/Navigation.php | 20 ++++---- Admin/Installer.php | 18 +++---- Admin/Status.php | 18 +++---- Admin/Uninstaller.php | 18 +++---- Admin/Updater.php | 18 +++---- Controller/ApiController.php | 26 +++++----- Controller/BackendController.php | 38 +++++++++------ Controller/Controller.php | 30 ++++++------ Models/AddressMapper.php | 24 +++++----- Models/ContactElement.php | 18 +++---- Models/ContactElementMapper.php | 16 +++---- Models/NullProfile.php | 18 +++---- Models/PermissionState.php | 18 +++---- Models/Profile.php | 48 +++++++++---------- Models/ProfileMapper.php | 28 +++++------ .../AccountGroupSelector/BaseView.php | 18 +++---- .../AccountGroupSelector/PopupView.php | 18 +++---- Theme/Backend/Lang/Navigation.en.lang.php | 10 ++-- Theme/Backend/Lang/api.en.lang.php | 10 ++-- Theme/Backend/Lang/en.lang.php | 10 ++-- Theme/Backend/profile-list.tpl.php | 10 ++-- Theme/Backend/profile-single.tpl.php | 10 ++-- 22 files changed, 227 insertions(+), 215 deletions(-) diff --git a/Admin/Install/Navigation.php b/Admin/Install/Navigation.php index 5e5f770..104c492 100644 --- a/Admin/Install/Navigation.php +++ b/Admin/Install/Navigation.php @@ -4,11 +4,11 @@ * * PHP Version 7.4 * - * @package Modules\Profile\Admin\Install - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link https://orange-management.org + * @package Modules\Profile\Admin\Install + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,10 +19,10 @@ use phpOMS\DataStorage\Database\DatabasePool; /** * Navigation class. * - * @package Modules\Profile\Admin\Install - * @license OMS License 1.0 - * @link https://orange-management.org - * @since 1.0.0 + * @package Modules\Profile\Admin\Install + * @license OMS License 1.0 + * @link https://orange-management.org + * @since 1.0.0 */ class Navigation { @@ -34,7 +34,7 @@ class Navigation * * @return void * - * @since 1.0.0 + * @since 1.0.0 */ public static function install(string $path, DatabasePool $dbPool) : void { diff --git a/Admin/Installer.php b/Admin/Installer.php index f1f0b48..15df2ef 100644 --- a/Admin/Installer.php +++ b/Admin/Installer.php @@ -4,11 +4,11 @@ * * PHP Version 7.4 * - * @package Modules\Profile\Admin - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link https://orange-management.org + * @package Modules\Profile\Admin + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,10 +19,10 @@ use phpOMS\Module\InstallerAbstract; /** * Installer class. * - * @package Modules\Profile\Admin - * @license OMS License 1.0 - * @link https://orange-management.org - * @since 1.0.0 + * @package Modules\Profile\Admin + * @license OMS License 1.0 + * @link https://orange-management.org + * @since 1.0.0 */ class Installer extends InstallerAbstract { diff --git a/Admin/Status.php b/Admin/Status.php index 1dc32ae..73d5960 100644 --- a/Admin/Status.php +++ b/Admin/Status.php @@ -4,11 +4,11 @@ * * PHP Version 7.4 * - * @package Modules\Profile\Admin - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link https://orange-management.org + * @package Modules\Profile\Admin + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,10 +19,10 @@ use phpOMS\Module\StatusAbstract; /** * Navigation class. * - * @package Modules\Profile\Admin - * @license OMS License 1.0 - * @link https://orange-management.org - * @since 1.0.0 + * @package Modules\Profile\Admin + * @license OMS License 1.0 + * @link https://orange-management.org + * @since 1.0.0 */ class Status extends StatusAbstract { diff --git a/Admin/Uninstaller.php b/Admin/Uninstaller.php index c512f0d..af96087 100644 --- a/Admin/Uninstaller.php +++ b/Admin/Uninstaller.php @@ -4,11 +4,11 @@ * * PHP Version 7.4 * - * @package Modules\Profile\Admin - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link https://orange-management.org + * @package Modules\Profile\Admin + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,10 +19,10 @@ use phpOMS\Module\UninstallerAbstract; /** * Uninstaller class. * - * @package Modules\Profile\Admin - * @license OMS License 1.0 - * @link https://orange-management.org - * @since 1.0.0 + * @package Modules\Profile\Admin + * @license OMS License 1.0 + * @link https://orange-management.org + * @since 1.0.0 */ class Uninstaller extends UninstallerAbstract { diff --git a/Admin/Updater.php b/Admin/Updater.php index 67cfb47..01ee53b 100644 --- a/Admin/Updater.php +++ b/Admin/Updater.php @@ -4,11 +4,11 @@ * * PHP Version 7.4 * - * @package Modules\Profile\Admin - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link https://orange-management.org + * @package Modules\Profile\Admin + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,10 +19,10 @@ use phpOMS\Module\UpdaterAbstract; /** * Updater class. * - * @package Modules\Profile\Admin - * @license OMS License 1.0 - * @link https://orange-management.org - * @since 1.0.0 + * @package Modules\Profile\Admin + * @license OMS License 1.0 + * @link https://orange-management.org + * @since 1.0.0 */ class Updater extends UpdaterAbstract { diff --git a/Controller/ApiController.php b/Controller/ApiController.php index c493968..b57c688 100644 --- a/Controller/ApiController.php +++ b/Controller/ApiController.php @@ -4,11 +4,11 @@ * * PHP Version 7.4 * - * @package Modules\Profile - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link https://orange-management.org + * @package Modules\Profile + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link https://orange-management.org */ declare(strict_types=1); @@ -25,14 +25,16 @@ use phpOMS\Message\ResponseAbstract; /** * Profile class. * - * @package Modules\Profile - * @license OMS License 1.0 - * @link https://orange-management.org - * @since 1.0.0 + * @package Modules\Profile + * @license OMS License 1.0 + * @link https://orange-management.org + * @since 1.0.0 */ final class ApiController extends Controller { /** + * Routing end-point for application behaviour. + * * @param RequestAbstract $request Request * @param ResponseAbstract $response Response * @param mixed $data Generic data @@ -41,7 +43,7 @@ final class ApiController extends Controller * * @api * - * @since 1.0.0 + * @since 1.0.0 */ public function apiProfileCreate(RequestAbstract $request, ResponseAbstract $response, $data = null) : void { @@ -70,7 +72,7 @@ final class ApiController extends Controller * * @return bool * - * @since 1.0.0 + * @since 1.0.0 */ public function apiProfileCreateDbEntry(Profile $profile, RequestAbstract $request) : bool { @@ -90,7 +92,7 @@ final class ApiController extends Controller * * @return array * - * @since 1.0.0 + * @since 1.0.0 */ private function createProfilesFromRequest(RequestAbstract $request) : array { diff --git a/Controller/BackendController.php b/Controller/BackendController.php index 80bc82f..c01a307 100644 --- a/Controller/BackendController.php +++ b/Controller/BackendController.php @@ -4,11 +4,11 @@ * * PHP Version 7.4 * - * @package Modules\Profile - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link https://orange-management.org + * @package Modules\Profile + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link https://orange-management.org */ declare(strict_types=1); @@ -26,22 +26,24 @@ use phpOMS\Views\View; /** * Profile class. * - * @package Modules\Profile - * @license OMS License 1.0 - * @link https://orange-management.org - * @since 1.0.0 + * @package Modules\Profile + * @license OMS License 1.0 + * @link https://orange-management.org + * @since 1.0.0 * @codeCoverageIgnore */ final class BackendController extends Controller { /** + * Routing end-point for application behaviour. + * * @param RequestAbstract $request Request * @param ResponseAbstract $response Response * @param mixed $data Generic data * * @return void * - * @since 1.0.0 + * @since 1.0.0 */ public function setupProfileStyles(RequestAbstract $request, ResponseAbstract $response, $data = null) : void { @@ -51,13 +53,15 @@ final class BackendController extends Controller } /** + * Routing end-point for application behaviour. + * * @param RequestAbstract $request Request * @param ResponseAbstract $response Response * @param mixed $data Generic data * * @return RenderableInterface * - * @since 1.0.0 + * @since 1.0.0 */ public function viewProfileList(RequestAbstract $request, ResponseAbstract $response, $data = null) : RenderableInterface { @@ -70,13 +74,15 @@ final class BackendController extends Controller } /** + * Routing end-point for application behaviour. + * * @param RequestAbstract $request Request * @param ResponseAbstract $response Response * @param mixed $data Generic data * * @return RenderableInterface * - * @since 1.0.0 + * @since 1.0.0 */ public function viewProfileSingle(RequestAbstract $request, ResponseAbstract $response, $data = null) : RenderableInterface { @@ -118,13 +124,15 @@ final class BackendController extends Controller } /** + * Routing end-point for application behaviour. + * * @param RequestAbstract $request Request * @param ResponseAbstract $response Response * @param mixed $data Generic data * * @return RenderableInterface * - * @since 1.0.0 + * @since 1.0.0 */ public function viewProfileAdminSettings(RequestAbstract $request, ResponseAbstract $response, $data = null) : RenderableInterface { @@ -136,13 +144,15 @@ final class BackendController extends Controller } /** + * Routing end-point for application behaviour. + * * @param RequestAbstract $request Request * @param ResponseAbstract $response Response * @param mixed $data Generic data * * @return RenderableInterface * - * @since 1.0.0 + * @since 1.0.0 */ public function viewProfileAdminCreate(RequestAbstract $request, ResponseAbstract $response, $data = null) : RenderableInterface { diff --git a/Controller/Controller.php b/Controller/Controller.php index f7139fe..7ccbf3f 100644 --- a/Controller/Controller.php +++ b/Controller/Controller.php @@ -4,11 +4,11 @@ * * PHP Version 7.4 * - * @package Modules\Profile - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link https://orange-management.org + * @package Modules\Profile + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link https://orange-management.org */ declare(strict_types=1); @@ -20,10 +20,10 @@ use phpOMS\Module\WebInterface; /** * Profile class. * - * @package Modules\Profile - * @license OMS License 1.0 - * @link https://orange-management.org - * @since 1.0.0 + * @package Modules\Profile + * @license OMS License 1.0 + * @link https://orange-management.org + * @since 1.0.0 */ class Controller extends ModuleAbstract implements WebInterface { @@ -31,7 +31,7 @@ class Controller extends ModuleAbstract implements WebInterface /** * Module path. * - * @var string + * @var string * @since 1.0.0 */ public const MODULE_PATH = __DIR__ . '/../'; @@ -39,7 +39,7 @@ class Controller extends ModuleAbstract implements WebInterface /** * Module version. * - * @var string + * @var string * @since 1.0.0 */ public const MODULE_VERSION = '1.0.0'; @@ -47,7 +47,7 @@ class Controller extends ModuleAbstract implements WebInterface /** * Module name. * - * @var string + * @var string * @since 1.0.0 */ public const MODULE_NAME = 'Profile'; @@ -55,7 +55,7 @@ class Controller extends ModuleAbstract implements WebInterface /** * Module id. * - * @var int + * @var int * @since 1.0.0 */ public const MODULE_ID = 1000300000; @@ -63,7 +63,7 @@ class Controller extends ModuleAbstract implements WebInterface /** * Providing. * - * @var string[] + * @var string[] * @since 1.0.0 */ protected static array $providing = []; @@ -71,7 +71,7 @@ class Controller extends ModuleAbstract implements WebInterface /** * Dependencies. * - * @var string[] + * @var string[] * @since 1.0.0 */ protected static array $dependencies = []; diff --git a/Models/AddressMapper.php b/Models/AddressMapper.php index 97461ad..399ab42 100644 --- a/Models/AddressMapper.php +++ b/Models/AddressMapper.php @@ -4,11 +4,11 @@ * * PHP Version 7.4 * - * @package Modules\Profile - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link https://orange-management.org + * @package Modules\Profile + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,17 +19,17 @@ use phpOMS\DataStorage\Database\DataMapperAbstract; /** * Address mapper. * - * @package Modules\Profile - * @license OMS License 1.0 - * @link https://orange-management.org - * @since 1.0.0 + * @package Modules\Profile + * @license OMS License 1.0 + * @link https://orange-management.org + * @since 1.0.0 */ final class AddressMapper extends DataMapperAbstract { /** * Columns. * - * @var array> + * @var array> * @since 1.0.0 */ protected static array $columns = [ @@ -45,7 +45,7 @@ final class AddressMapper extends DataMapperAbstract /** * Primary table. * - * @var string + * @var string * @since 1.0.0 */ protected static string $table = 'profile_address'; @@ -53,7 +53,7 @@ final class AddressMapper extends DataMapperAbstract /** * Primary field name. * - * @var string + * @var string * @since 1.0.0 */ protected static string $primaryField = 'profile_address_id'; diff --git a/Models/ContactElement.php b/Models/ContactElement.php index 1b8fc09..8a5b26b 100644 --- a/Models/ContactElement.php +++ b/Models/ContactElement.php @@ -4,11 +4,11 @@ * * PHP Version 7.4 * - * @package Modules\Profile\Models - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link https://orange-management.org + * @package Modules\Profile\Models + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link https://orange-management.org */ declare(strict_types=1); @@ -17,10 +17,10 @@ namespace Modules\Profile\Models; /** * Account class. * - * @package Modules\Profile\Models - * @license OMS License 1.0 - * @link https://orange-management.org - * @since 1.0.0 + * @package Modules\Profile\Models + * @license OMS License 1.0 + * @link https://orange-management.org + * @since 1.0.0 */ class ContactElement { diff --git a/Models/ContactElementMapper.php b/Models/ContactElementMapper.php index dbec9d4..d209658 100644 --- a/Models/ContactElementMapper.php +++ b/Models/ContactElementMapper.php @@ -4,11 +4,11 @@ * * PHP Version 7.4 * - * @package TBD - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link https://orange-management.org + * @package TBD + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,7 +21,7 @@ final class ContactElementMapper extends DataMapperAbstract /** * Columns. * - * @var array> + * @var array> * @since 1.0.0 */ protected static array $columns = [ @@ -31,7 +31,7 @@ final class ContactElementMapper extends DataMapperAbstract /** * Primary table. * - * @var string + * @var string * @since 1.0.0 */ protected static string $table = 'profile_contact'; @@ -39,7 +39,7 @@ final class ContactElementMapper extends DataMapperAbstract /** * Primary field name. * - * @var string + * @var string * @since 1.0.0 */ protected static string $primaryField = 'profile_contact_id'; diff --git a/Models/NullProfile.php b/Models/NullProfile.php index 1b9e8ad..2e77182 100644 --- a/Models/NullProfile.php +++ b/Models/NullProfile.php @@ -4,11 +4,11 @@ * * PHP Version 7.4 * - * @package Modules\Profile\Models - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link https://orange-management.org + * @package Modules\Profile\Models + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link https://orange-management.org */ declare(strict_types=1); @@ -17,10 +17,10 @@ namespace Modules\Profile\Models; /** * Account class. * - * @package Modules\Profile\Models - * @license OMS License 1.0 - * @link https://orange-management.org - * @since 1.0.0 + * @package Modules\Profile\Models + * @license OMS License 1.0 + * @link https://orange-management.org + * @since 1.0.0 */ class NullProfile extends Profile { diff --git a/Models/PermissionState.php b/Models/PermissionState.php index 055c8d9..f383b65 100644 --- a/Models/PermissionState.php +++ b/Models/PermissionState.php @@ -4,11 +4,11 @@ * * PHP Version 7.4 * - * @package Modules\Profile\Models - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link https://orange-management.org + * @package Modules\Profile\Models + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link https://orange-management.org */ declare(strict_types=1); @@ -19,10 +19,10 @@ use phpOMS\Stdlib\Base\Enum; /** * Permision state enum. * - * @package Modules\Profile\Models - * @license OMS License 1.0 - * @link https://orange-management.org - * @since 1.0.0 + * @package Modules\Profile\Models + * @license OMS License 1.0 + * @link https://orange-management.org + * @since 1.0.0 */ abstract class PermissionState extends Enum { diff --git a/Models/Profile.php b/Models/Profile.php index 25cd334..f5734b0 100644 --- a/Models/Profile.php +++ b/Models/Profile.php @@ -4,11 +4,11 @@ * * PHP Version 7.4 * - * @package Modules\Profile\Models - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link https://orange-management.org + * @package Modules\Profile\Models + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link https://orange-management.org */ declare(strict_types=1); @@ -24,17 +24,17 @@ use phpOMS\Stdlib\Base\Location; /** * Profile class. * - * @package Modules\Profile\Models - * @license OMS License 1.0 - * @link https://orange-management.org - * @since 1.0.0 + * @package Modules\Profile\Models + * @license OMS License 1.0 + * @link https://orange-management.org + * @since 1.0.0 */ class Profile implements \JsonSerializable { /** * Id. * - * @var int + * @var int * @since 1.0.0 */ private int $id = 0; @@ -42,7 +42,7 @@ class Profile implements \JsonSerializable /** * Profile image. * - * @var null|int|Media + * @var null|int|Media * @since 1.0.0 */ private $image = null; @@ -50,7 +50,7 @@ class Profile implements \JsonSerializable /** * Birthday. * - * @var null|\DateTime + * @var null|\DateTime * @since 1.0.0 */ private ?\DateTime $birthday = null; @@ -58,7 +58,7 @@ class Profile implements \JsonSerializable /** * Account. * - * @var Account + * @var Account * @since 1.0.0 */ private $account = null; @@ -66,7 +66,7 @@ class Profile implements \JsonSerializable /** * Location data. * - * @var array + * @var array * @since 1.0.0 */ private array $location = []; @@ -76,7 +76,7 @@ class Profile implements \JsonSerializable * * @param null|Account $account Account to initialize this profile with * - * @since 1.0.0 + * @since 1.0.0 */ public function __construct(Account $account = null) { @@ -90,7 +90,7 @@ class Profile implements \JsonSerializable * * @return int Account id * - * @since 1.0.0 + * @since 1.0.0 */ public function getId() : int { @@ -102,7 +102,7 @@ class Profile implements \JsonSerializable * * @return array * - * @since 1.0.0 + * @since 1.0.0 */ public function getLocation() : array { @@ -116,7 +116,7 @@ class Profile implements \JsonSerializable * * @return void * - * @since 1.0.0 + * @since 1.0.0 */ public function addLocation(Location $location) : void { @@ -128,7 +128,7 @@ class Profile implements \JsonSerializable * * @return Media * - * @since 1.0.0 + * @since 1.0.0 */ public function getImage() : Media { @@ -142,7 +142,7 @@ class Profile implements \JsonSerializable * * @return void * - * @since 1.0.0 + * @since 1.0.0 */ public function setImage(Media $image) : void { @@ -156,7 +156,7 @@ class Profile implements \JsonSerializable * * @return void * - * @since 1.0.0 + * @since 1.0.0 */ public function setAccount(Account $account) : void { @@ -168,7 +168,7 @@ class Profile implements \JsonSerializable * * @return Account * - * @since 1.0.0 + * @since 1.0.0 */ public function getAccount() : Account { @@ -182,7 +182,7 @@ class Profile implements \JsonSerializable * * @return void * - * @since 1.0.0 + * @since 1.0.0 */ public function setBirthday(\DateTime $birthday) : void { @@ -194,7 +194,7 @@ class Profile implements \JsonSerializable * * @return \DateTime * - * @since 1.0.0 + * @since 1.0.0 */ public function getBirthday() : \DateTime { diff --git a/Models/ProfileMapper.php b/Models/ProfileMapper.php index 2c6d0c1..ede8945 100644 --- a/Models/ProfileMapper.php +++ b/Models/ProfileMapper.php @@ -4,11 +4,11 @@ * * PHP Version 7.4 * - * @package Modules\Profile\Models - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link https://orange-management.org + * @package Modules\Profile\Models + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link https://orange-management.org */ declare(strict_types=1); @@ -21,17 +21,17 @@ use phpOMS\DataStorage\Database\DataMapperAbstract; /** * Profile mapper. * - * @package Modules\Profile - * @license OMS License 1.0 - * @link https://orange-management.org - * @since 1.0.0 + * @package Modules\Profile + * @license OMS License 1.0 + * @link https://orange-management.org + * @since 1.0.0 */ final class ProfileMapper extends DataMapperAbstract { /** * Columns. * - * @var array> + * @var array> * @since 1.0.0 */ protected static array $columns = [ @@ -44,7 +44,7 @@ final class ProfileMapper extends DataMapperAbstract /** * Has one relation. * - * @var array> + * @var array> * @since 1.0.0 */ protected static array $ownsOne = [ @@ -61,7 +61,7 @@ final class ProfileMapper extends DataMapperAbstract /** * Has many relation. * - * @var array> + * @var array> * @since 1.0.0 */ protected static array $hasMany = [ @@ -76,7 +76,7 @@ final class ProfileMapper extends DataMapperAbstract /** * Primary table. * - * @var string + * @var string * @since 1.0.0 */ protected static string $table = 'profile_account'; @@ -84,7 +84,7 @@ final class ProfileMapper extends DataMapperAbstract /** * Primary field name. * - * @var string + * @var string * @since 1.0.0 */ protected static string $primaryField = 'profile_account_id'; diff --git a/Theme/Backend/Components/AccountGroupSelector/BaseView.php b/Theme/Backend/Components/AccountGroupSelector/BaseView.php index c823c86..e229b6c 100644 --- a/Theme/Backend/Components/AccountGroupSelector/BaseView.php +++ b/Theme/Backend/Components/AccountGroupSelector/BaseView.php @@ -4,11 +4,11 @@ * * PHP Version 7.4 * - * @package TBD - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link https://orange-management.org + * @package TBD + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link https://orange-management.org */ declare(strict_types=1); @@ -22,10 +22,10 @@ use phpOMS\Views\View; /** * Component view. * - * @package TBD - * @license OMS License 1.0 - * @link https://orange-management.org - * @since 1.0.0 + * @package TBD + * @license OMS License 1.0 + * @link https://orange-management.org + * @since 1.0.0 * @codeCoverageIgnore */ class BaseView extends View diff --git a/Theme/Backend/Components/AccountGroupSelector/PopupView.php b/Theme/Backend/Components/AccountGroupSelector/PopupView.php index 29ed00e..ddf4242 100644 --- a/Theme/Backend/Components/AccountGroupSelector/PopupView.php +++ b/Theme/Backend/Components/AccountGroupSelector/PopupView.php @@ -4,11 +4,11 @@ * * PHP Version 7.4 * - * @package TBD - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link https://orange-management.org + * @package TBD + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link https://orange-management.org */ declare(strict_types=1); @@ -22,10 +22,10 @@ use phpOMS\Views\View; /** * Component view. * - * @package TBD - * @license OMS License 1.0 - * @link https://orange-management.org - * @since 1.0.0 + * @package TBD + * @license OMS License 1.0 + * @link https://orange-management.org + * @since 1.0.0 * @codeCoverageIgnore */ class PopupView extends View diff --git a/Theme/Backend/Lang/Navigation.en.lang.php b/Theme/Backend/Lang/Navigation.en.lang.php index fd18300..f6fe746 100644 --- a/Theme/Backend/Lang/Navigation.en.lang.php +++ b/Theme/Backend/Lang/Navigation.en.lang.php @@ -4,11 +4,11 @@ * * PHP Version 7.4 * - * @package TBD - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link https://orange-management.org + * @package TBD + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link https://orange-management.org */ return ['Navigation' => [ 'List' => 'List', diff --git a/Theme/Backend/Lang/api.en.lang.php b/Theme/Backend/Lang/api.en.lang.php index 4d6641a..7fb3f85 100644 --- a/Theme/Backend/Lang/api.en.lang.php +++ b/Theme/Backend/Lang/api.en.lang.php @@ -4,11 +4,11 @@ * * PHP Version 7.4 * - * @package TBD - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link https://orange-management.org + * @package TBD + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link https://orange-management.org */ $MODLANG[1] = [ 'i:ModuleInstalled' => 'Installation of the module {$1} was successful.', diff --git a/Theme/Backend/Lang/en.lang.php b/Theme/Backend/Lang/en.lang.php index 0a91546..a0b632c 100644 --- a/Theme/Backend/Lang/en.lang.php +++ b/Theme/Backend/Lang/en.lang.php @@ -4,11 +4,11 @@ * * PHP Version 7.4 * - * @package TBD - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link https://orange-management.org + * @package TBD + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link https://orange-management.org */ return ['Profile' => [ 'Account' => 'Account', diff --git a/Theme/Backend/profile-list.tpl.php b/Theme/Backend/profile-list.tpl.php index 939c4b7..b234bc6 100644 --- a/Theme/Backend/profile-list.tpl.php +++ b/Theme/Backend/profile-list.tpl.php @@ -4,11 +4,11 @@ * * PHP Version 7.4 * - * @package TBD - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link https://orange-management.org + * @package TBD + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link https://orange-management.org */ /** * @var \phpOMS\Views\View $this diff --git a/Theme/Backend/profile-single.tpl.php b/Theme/Backend/profile-single.tpl.php index 4d833a4..a96eeee 100644 --- a/Theme/Backend/profile-single.tpl.php +++ b/Theme/Backend/profile-single.tpl.php @@ -4,11 +4,11 @@ * * PHP Version 7.4 * - * @package TBD - * @copyright Dennis Eichhorn - * @license OMS License 1.0 - * @version 1.0.0 - * @link https://orange-management.org + * @package TBD + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link https://orange-management.org */ use Modules\Media\Models\NullMedia; use phpOMS\Uri\UriFactory;