Remove whitespace from end of line

This commit is contained in:
Dennis Eichhorn 2018-01-15 18:56:01 +01:00
parent 6cda97b124
commit 9fe75a88b6

View File

@ -5,55 +5,55 @@ use phpOMS\Router\RouteVerb;
return [ return [
'^.*/backend/organization/unit/list.*$' => [ '^.*/backend/organization/unit/list.*$' => [
[ [
'dest' => '\Modules\Organization\Controller:viewUnitList', 'dest' => '\Modules\Organization\Controller:viewUnitList',
'verb' => RouteVerb::GET, 'verb' => RouteVerb::GET,
], ],
], ],
'^.*/backend/organization/unit/profile.*$' => [ '^.*/backend/organization/unit/profile.*$' => [
[ [
'dest' => '\Modules\Organization\Controller:viewUnitProfile', 'dest' => '\Modules\Organization\Controller:viewUnitProfile',
'verb' => RouteVerb::GET, 'verb' => RouteVerb::GET,
], ],
], ],
'^.*/backend/organization/unit/create.*$' => [ '^.*/backend/organization/unit/create.*$' => [
[ [
'dest' => '\Modules\Organization\Controller:viewUnitCreate', 'dest' => '\Modules\Organization\Controller:viewUnitCreate',
'verb' => RouteVerb::GET, 'verb' => RouteVerb::GET,
], ],
], ],
'^.*/backend/organization/department/list.*$' => [ '^.*/backend/organization/department/list.*$' => [
[ [
'dest' => '\Modules\Organization\Controller:viewDepartmentList', 'dest' => '\Modules\Organization\Controller:viewDepartmentList',
'verb' => RouteVerb::GET, 'verb' => RouteVerb::GET,
], ],
], ],
'^.*/backend/organization/department/profile.*$' => [ '^.*/backend/organization/department/profile.*$' => [
[ [
'dest' => '\Modules\Organization\Controller:viewDepartmentProfile', 'dest' => '\Modules\Organization\Controller:viewDepartmentProfile',
'verb' => RouteVerb::GET, 'verb' => RouteVerb::GET,
], ],
], ],
'^.*/backend/organization/department/create.*$' => [ '^.*/backend/organization/department/create.*$' => [
[ [
'dest' => '\Modules\Organization\Controller:viewDepartmentCreate', 'dest' => '\Modules\Organization\Controller:viewDepartmentCreate',
'verb' => RouteVerb::GET, 'verb' => RouteVerb::GET,
], ],
], ],
'^.*/backend/organization/position/list.*$' => [ '^.*/backend/organization/position/list.*$' => [
[ [
'dest' => '\Modules\Organization\Controller:viewPositionList', 'dest' => '\Modules\Organization\Controller:viewPositionList',
'verb' => RouteVerb::GET, 'verb' => RouteVerb::GET,
], ],
], ],
'^.*/backend/organization/position/profile.*$' => [ '^.*/backend/organization/position/profile.*$' => [
[ [
'dest' => '\Modules\Organization\Controller:viewPositionProfile', 'dest' => '\Modules\Organization\Controller:viewPositionProfile',
'verb' => RouteVerb::GET, 'verb' => RouteVerb::GET,
], ],
], ],
'^.*/backend/organization/position/create.*$' => [ '^.*/backend/organization/position/create.*$' => [
[ [
'dest' => '\Modules\Organization\Controller:viewPositionCreate', 'dest' => '\Modules\Organization\Controller:viewPositionCreate',
'verb' => RouteVerb::GET, 'verb' => RouteVerb::GET,
], ],
], ],