Skip to content

Commit

Permalink
cfformat
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasRu committed Aug 24, 2023
1 parent 3c8483d commit 182eff0
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions Application.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,10 @@ component displayname = "Application" output = "false" hint = "Handle the applic
this.charset.web = "UTF-8";
this.charset.resource = "UTF-8";

//function is fired at start of request
public boolean function onRequestStart() output=false {

request.ExecStart = GetTickCount();
return true;

// function is fired at start of request
public boolean function onRequestStart() output = false {
request.ExecStart = getTickCount();
return true;
}

}

0 comments on commit 182eff0

Please sign in to comment.