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 [ return [
'^.*/controlling/investment/dashboard.*$' => [ '^.*/controlling/investment/dashboard.*$' => [
[ [
'dest' => '\Modules\InvestmentManagement\Controller\BackendController:viewInvestmentDashboard', 'dest' => '\Modules\InvestmentManagement\Controller\BackendController:viewInvestmentDashboard',
'verb' => RouteVerb::GET, 'verb' => RouteVerb::GET,
'permission' => [ 'permission' => [
'module' => BackendController::MODULE_NAME, 'module' => BackendController::MODULE_NAME,
'type' => PermissionType::READ, 'type' => PermissionType::READ,
'state' => PermissionCategory::INVESTMENT, 'state' => PermissionCategory::INVESTMENT,
], ],
], ],
], ],

View File

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

View File

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

View File

@ -1,4 +1,4 @@
<?php <?php declare(strict_types=1);
use phpOMS\Business\Finance\DepreciationType; use phpOMS\Business\Finance\DepreciationType;
use phpOMS\Stdlib\Base\FloatInt; use phpOMS\Stdlib\Base\FloatInt;

View File

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