-
Notifications
You must be signed in to change notification settings - Fork 10
Open
Labels
Description
Currently the function hint attribute is moved to a comment above the function. Both Lucee and ACF prefer that it is in a function argument instead (Which show up in the meta data when you dump the function).
<cffunction name="test" hint="Hint">
<cfreturn 1>
</cffunction>
Should become:
function test() hint="Hint" {
return 1;
}
JamoCA