phpcs autofixes

This commit is contained in:
Dennis Eichhorn 2023-05-28 12:19:03 +00:00
parent 52c85490a3
commit 44fddb21b4
2 changed files with 4 additions and 10 deletions

View File

@ -8,12 +8,12 @@ use phpOMS\Router\RouteVerb;
return [ return [
'^.*/controlling/budget/dashboard.*$' => [ '^.*/controlling/budget/dashboard.*$' => [
[ [
'dest' => '\Modules\Labeling\Controller\BackendController:viewBudgetingDashboard', 'dest' => '\Modules\Labeling\Controller\BackendController:viewBudgetingDashboard',
'verb' => RouteVerb::GET, 'verb' => RouteVerb::GET,
'permission' => [ 'permission' => [
'module' => BackendController::MODULE_NAME, 'module' => BackendController::MODULE_NAME,
'type' => PermissionType::READ, 'type' => PermissionType::READ,
'state' => PermissionState::LABEL, 'state' => PermissionState::LABEL,
], ],
], ],
], ],

View File

@ -14,11 +14,6 @@ declare(strict_types=1);
namespace Modules\Labeling\Controller; namespace Modules\Labeling\Controller;
use phpOMS\Contract\RenderableInterface;
use phpOMS\Message\RequestAbstract;
use phpOMS\Message\ResponseAbstract;
use phpOMS\Views\View;
/** /**
* Budgeting controller class. * Budgeting controller class.
* *
@ -29,5 +24,4 @@ use phpOMS\Views\View;
*/ */
final class BackendController extends Controller final class BackendController extends Controller
{ {
} }