style fixes and time recording app draft

This commit is contained in:
Dennis Eichhorn 2019-09-28 20:59:03 +02:00
parent 31533a8d80
commit 43d99f0608
5 changed files with 10 additions and 7 deletions

View File

@ -4,7 +4,7 @@
*
* PHP Version 7.4
*
* @package Modules\Profile
* @package Modules\Profile\Models
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
@ -19,7 +19,7 @@ use phpOMS\DataStorage\Database\DataMapperAbstract;
/**
* Address mapper.
*
* @package Modules\Profile
* @package Modules\Profile\Models
* @license OMS License 1.0
* @link https://orange-management.org
* @since 1.0.0

View File

@ -4,7 +4,7 @@
*
* PHP Version 7.4
*
* @package Modules\Profile
* @package Modules\Profile\Models
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
@ -19,7 +19,7 @@ use phpOMS\DataStorage\Database\DataMapperAbstract;
/**
* Contact mapper class.
*
* @package Modules\Profile
* @package Modules\Profile\Models
* @license OMS License 1.0
* @link https://orange-management.org
* @since 1.0.0

View File

@ -50,10 +50,10 @@ class Profile implements \JsonSerializable
/**
* Birthday.
*
* @var null|\DateTime
* @var \DateTime
* @since 1.0.0
*/
private ?\DateTime $birthday = null;
private \DateTime $birthday;
/**
* Account.

View File

@ -21,7 +21,7 @@ use phpOMS\DataStorage\Database\DataMapperAbstract;
/**
* Profile mapper.
*
* @package Modules\Profile
* @package Modules\Profile\Models
* @license OMS License 1.0
* @link https://orange-management.org
* @since 1.0.0

View File

@ -14,10 +14,12 @@ return ['Profile' => [
'Account' => 'Account',
'Account/Group' => 'Account/Group',
'Activity' => 'Activity',
'Address' => 'Address',
'Area' => 'Area',
'Birthday' => 'Birthday',
'ContactInformation' => 'Contact Information',
'Community' => 'Community',
'City' => 'City',
'Country' => 'Country',
'CreateProfile' => 'Create Profile',
'Currency' => 'Currency',
@ -72,4 +74,5 @@ return ['Profile' => [
'VerySmall' => 'Very Small',
'Volume' => 'Volume',
'Weight' => 'Weight',
'Zip' => 'Zip',
]];