What is the default signature of setters and gette...
# cfml-beginners
o
What is the default signature of setters and getters if
accessors="true"
? Example:
Copy code
property name="id";
property name="username";
property name="email";
property name="password";
r
public any function get{Property}()
and
public void function set{Property}( required any value )
It might by
Any
instead of
string
.
s
yeah its any
o
Thank you