Skip to content

Commit 4a04f22

Browse files
lmajanogithub-actions[bot]
authored andcommitted
Apply cfformat changes
1 parent a24b5d7 commit 4a04f22

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

system/web/services/RoutingService.cfc

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ component extends="coldbox.system.web.services.BaseService" accessors="true" {
9090
// Declare types of routers to discover
9191
var modernRouter = "config.Router";
9292
var baseRouter = "coldbox.system.web.routing.Router";
93-
var appMapping = ( len( variables.appMapping ) ? "/#variables.appMapping#/" : "/" );
93+
var appMapping = ( len( variables.appMapping ) ? "/#variables.appMapping#/" : "/" );
9494

9595
// Discover router: app or base
9696
var configFilePath = appMapping & modernRouter.replace( ".", "/", "all" );
@@ -100,8 +100,12 @@ component extends="coldbox.system.web.services.BaseService" accessors="true" {
100100
)
101101
) ? "modern" : "base";
102102

103-
writeDump( var=configFilePath, top = 5, showUDFs = false );
104-
writeDump( var=routerType, top = 5, showUDFs = false );
103+
writeDump(
104+
var = configFilePath,
105+
top = 5,
106+
showUDFs = false
107+
);
108+
writeDump( var = routerType, top = 5, showUDFs = false );
105109

106110
// Check if base router mapped?
107111
if ( NOT wirebox.getBinder().mappingExists( baseRouter ) ) {

0 commit comments

Comments
 (0)