bug fixes and template adjustments

This commit is contained in:
Dennis Eichhorn 2021-07-31 17:20:48 +02:00
parent b8ce531e1b
commit bf2fa7fb60
3 changed files with 13 additions and 11 deletions

View File

@ -67,9 +67,7 @@ class ExchangeLog implements \JsonSerializable, ArrayableInterface
* @var int
* @since 1.0.0
*/
public int |
InterfaceManager $exchange = 0;
public int|InterfaceManager $exchange = 0;
/**
* Date type.
@ -79,9 +77,13 @@ InterfaceManager $exchange = 0;
*/
public \DateTimeImmutable $createdAt;
public int |
Account $createdBy = 0;
/**
* Created by account.
*
* @var int|Account
* @since 1.0.0
*/
public int|Account $createdBy = 0;
/**
* Constructor.

View File

@ -19,15 +19,15 @@ return ['Exchange' => [
'Creator' => '',
'Database' => 'Database',
'End' => 'End',
'Exchange' => '',
'Exchange' => 'Exchange',
'Export' => 'Export',
'Exports' => '',
'Exports' => 'Exports',
'File' => 'File',
'Host' => 'Host',
'Import' => 'Import',
'Imports' => '',
'Imports' => 'Imports',
'Login' => 'Login',
'Logs' => '',
'Logs' => 'Logs',
'Options' => 'Options',
'Password' => 'Password',
'Port' => 'Port',

View File

@ -10,7 +10,7 @@
"require-dev": {
"phpunit/phpunit": ">=9.4",
"friendsofphp/php-cs-fixer": ">=3.0",
"squizlabs/php_codesniffer": ">=3.5",
"squizlabs/php_codesniffer": ">=3.6",
"phpmd/phpmd": ">=2.9",
"phpstan/phpstan": ">=0.12.58",
"phan/phan": ">=3.2.6"