Skip to content

Commit

Permalink
fix: name metadata attribute replaced by displayName
Browse files Browse the repository at this point in the history
  • Loading branch information
wpdebruin authored Jun 21, 2021
1 parent 15bbfa2 commit dad0b1c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion models/RequestStorageInterface.cfc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
interface name="RequestStorageInterface" {
interface displayName="RequestStorageInterface" {

public any function getVar( required string name, any defaultValue );
public void function setVar( required string name, required any value );
Expand Down
2 changes: 1 addition & 1 deletion models/SessionStorageInterface.cfc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
interface name="SessionStorageInterface" {
interface displayName="SessionStorageInterface" {

public any function getVar( required string name, any defaultValue );
public void function setVar( required string name, required any value );
Expand Down

0 comments on commit dad0b1c

Please sign in to comment.