Skip to content

Commit b28fdb4

Browse files
lmajanogithub-actions[bot]
authored andcommitted
Apply cfformat changes
1 parent 5671ee4 commit b28fdb4

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

system/web/services/RequestService.cfc

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ component extends="coldbox.system.web.services.BaseService" {
219219
/**
220220
* Set the request context into the request scope
221221
*
222-
* @context Request Context object
222+
* @context Request Context object
223223
*/
224224
RequestService function setContext( required context ){
225225
request.cb_requestContext = arguments.context;
@@ -319,17 +319,17 @@ component extends="coldbox.system.web.services.BaseService" {
319319

320320
// Create the original request context
321321
var oContext = createObject( "component", arguments.classPath ).init(
322-
properties : variables.controller.getConfigSettings(),
323-
controller : variables.controller
322+
properties: variables.controller.getConfigSettings(),
323+
controller: variables.controller
324324
);
325325

326326
// Determine if we have a decorator, if we do, then decorate it.
327327
if ( len( variables.controller.getSetting( name = "RequestContextDecorator", defaultValue = "" ) ) ) {
328328
// Create the decorator
329-
oDecorator = createObject( "component", variables.controller.getSetting( name = "RequestContextDecorator" ) ).init(
330-
oContext,
331-
variables.controller
332-
);
329+
oDecorator = createObject(
330+
"component",
331+
variables.controller.getSetting( name = "RequestContextDecorator" )
332+
).init( oContext, variables.controller );
333333
// Set Request Context in storage
334334
setContext( oDecorator );
335335
// Return

0 commit comments

Comments
 (0)