From 9fe75a88b620923dbb3e79b22baebce967950f10 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Mon, 15 Jan 2018 18:56:01 +0100 Subject: [PATCH] Remove whitespace from end of line --- Admin/Routes/Web/Backend.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Admin/Routes/Web/Backend.php b/Admin/Routes/Web/Backend.php index 47b2ee1..8761b0c 100644 --- a/Admin/Routes/Web/Backend.php +++ b/Admin/Routes/Web/Backend.php @@ -5,55 +5,55 @@ use phpOMS\Router\RouteVerb; return [ '^.*/backend/organization/unit/list.*$' => [ [ - 'dest' => '\Modules\Organization\Controller:viewUnitList', + 'dest' => '\Modules\Organization\Controller:viewUnitList', 'verb' => RouteVerb::GET, ], ], '^.*/backend/organization/unit/profile.*$' => [ [ - 'dest' => '\Modules\Organization\Controller:viewUnitProfile', + 'dest' => '\Modules\Organization\Controller:viewUnitProfile', 'verb' => RouteVerb::GET, ], ], '^.*/backend/organization/unit/create.*$' => [ [ - 'dest' => '\Modules\Organization\Controller:viewUnitCreate', + 'dest' => '\Modules\Organization\Controller:viewUnitCreate', 'verb' => RouteVerb::GET, ], ], '^.*/backend/organization/department/list.*$' => [ [ - 'dest' => '\Modules\Organization\Controller:viewDepartmentList', + 'dest' => '\Modules\Organization\Controller:viewDepartmentList', 'verb' => RouteVerb::GET, ], ], '^.*/backend/organization/department/profile.*$' => [ [ - 'dest' => '\Modules\Organization\Controller:viewDepartmentProfile', + 'dest' => '\Modules\Organization\Controller:viewDepartmentProfile', 'verb' => RouteVerb::GET, ], ], '^.*/backend/organization/department/create.*$' => [ [ - 'dest' => '\Modules\Organization\Controller:viewDepartmentCreate', + 'dest' => '\Modules\Organization\Controller:viewDepartmentCreate', 'verb' => RouteVerb::GET, ], ], '^.*/backend/organization/position/list.*$' => [ [ - 'dest' => '\Modules\Organization\Controller:viewPositionList', + 'dest' => '\Modules\Organization\Controller:viewPositionList', 'verb' => RouteVerb::GET, ], ], '^.*/backend/organization/position/profile.*$' => [ [ - 'dest' => '\Modules\Organization\Controller:viewPositionProfile', + 'dest' => '\Modules\Organization\Controller:viewPositionProfile', 'verb' => RouteVerb::GET, ], ], '^.*/backend/organization/position/create.*$' => [ [ - 'dest' => '\Modules\Organization\Controller:viewPositionCreate', + 'dest' => '\Modules\Organization\Controller:viewPositionCreate', 'verb' => RouteVerb::GET, ], ],