auto fixes + some impl.

This commit is contained in:
Dennis Eichhorn 2024-01-26 22:53:59 +00:00
parent 9c21043ca9
commit e4be0ff8c5
3 changed files with 45 additions and 34 deletions

View File

@ -18,7 +18,7 @@ use phpOMS\Account\PermissionType;
use phpOMS\Router\RouteVerb; use phpOMS\Router\RouteVerb;
return [ return [
'^.*/accounting/cash/list.*$' => [ '^.*/accounting/cash/list(\?.*$|$)' => [
[ [
'dest' => '\Modules\CashManagement\Controller\BackendController:viewCashList', 'dest' => '\Modules\CashManagement\Controller\BackendController:viewCashList',
'verb' => RouteVerb::GET, 'verb' => RouteVerb::GET,
@ -29,7 +29,7 @@ return [
], ],
], ],
], ],
'^.*/accounting/cash/register.*$' => [ '^.*/accounting/cash/register(\?.*$|$)' => [
[ [
'dest' => '\Modules\CashManagement\Controller\BackendController:viewCashList', 'dest' => '\Modules\CashManagement\Controller\BackendController:viewCashList',
'verb' => RouteVerb::GET, 'verb' => RouteVerb::GET,

View File

@ -1,4 +1,15 @@
<?php <?php
/**
* Jingga
*
* PHP Version 8.1
*
* @package Modules\CashManagement\tests
* @copyright Dennis Eichhorn
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
declare(strict_types=1); declare(strict_types=1);
\ini_set('memory_limit', '2048M'); \ini_set('memory_limit', '2048M');