phpcs autofixes

This commit is contained in:
Dennis Eichhorn 2023-05-28 12:19:03 +00:00
parent 04abf14714
commit 7579e37764
5 changed files with 9 additions and 11 deletions

View File

@ -8,12 +8,12 @@ use phpOMS\Router\RouteVerb;
return [
'^.*/controlling/investment/dashboard.*$' => [
[
'dest' => '\Modules\InvestmentManagement\Controller\BackendController:viewInvestmentDashboard',
'verb' => RouteVerb::GET,
'dest' => '\Modules\InvestmentManagement\Controller\BackendController:viewInvestmentDashboard',
'verb' => RouteVerb::GET,
'permission' => [
'module' => BackendController::MODULE_NAME,
'type' => PermissionType::READ,
'state' => PermissionCategory::INVESTMENT,
'type' => PermissionType::READ,
'state' => PermissionCategory::INVESTMENT,
],
],
],

View File

@ -1,4 +1,4 @@
<?php
<?php declare(strict_types=1);
use Modules\Admin\Models\Account;
use phpOMS\Business\Finance\DepreciationType;

View File

@ -1,6 +1,4 @@
<?php
use phpOMS\Business\Finance\DepreciationType;
<?php declare(strict_types=1);
class InvestmentObject
{

View File

@ -1,4 +1,4 @@
<?php
<?php declare(strict_types=1);
use phpOMS\Business\Finance\DepreciationType;
use phpOMS\Stdlib\Base\FloatInt;
@ -19,4 +19,4 @@ class Money {
public MoneyType $moneyType;
public bool $recurring = false;
}
}

View File

@ -1,4 +1,4 @@
<?php
<?php declare(strict_types=1);
use phpOMS\Localization\BaseStringL11n;