Skip to content

Commit d9a8ad2

Browse files
committed
acf compats
1 parent 1e7d195 commit d9a8ad2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

models/jwt/JwtService.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ component accessors="true" singleton{
145145
// Store in ColdBox data bus
146146
variables.requestService
147147
.getContext()
148-
.setPrivateValue( variables.settings.prcUserVariable, oUser )
148+
.setPrivateValue( variables.settings.prcUserVariable, oUser );
149149

150150
// Return the user
151151
return oUser;

test-harness/models/UserService.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ component singleton {
1313
return this;
1414
}
1515

16-
User function new() provider="User";
16+
User function new() provider="User"{}
1717

1818
User function retrieveUserById( required id ){
1919
return populator.populateFromQuery( new (), queryExecute( "SELECT * FROM `users` WHERE `id` = ?", [ id ] ) );

0 commit comments

Comments
 (0)