Daniel Mejia
05/19/2022, 9:50 PMcomponent accessors=true {
private property name="settings"; // <-- do not allow setter/getter publicly
property name="a"; // this is ok publicly
}
bendur
05/19/2022, 9:52 PMbendur
05/19/2022, 9:53 PMDaniel Mejia
05/19/2022, 9:53 PMDaniel Mejia
05/19/2022, 9:54 PMDaniel Mejia
05/19/2022, 9:54 PMbendur
05/19/2022, 9:56 PMDaniel Mejia
05/19/2022, 9:59 PMsettings = ...
bendur
05/19/2022, 9:59 PMbdw429s
05/19/2022, 11:28 PMDaniel Mejia
05/20/2022, 12:42 AMEvil Ware
05/20/2022, 2:03 AMcfsimplicity
05/20/2022, 2:47 PMcomponent accessors=true {
property name="settings" setter=false getter=false; // <-- do not allow setter/getter publicly
property name="a"; // this is ok publicly
}
Daniel Mejia
05/20/2022, 3:38 PMDaniel Mejia
05/20/2022, 3:41 PMgetter=false setter=false
also removes them within the CFC. I want implicit getter/setter within the cfc but not publicly.
Either way, its not a show stopper. I was just curious.cfsimplicity
05/20/2022, 4:12 PMsettings
property, and then use variables.settings
internally.Daniel Mejia
05/20/2022, 4:14 PM