Home › Forums › Back End › Not getting it? › Reply To: Not getting it?
September 17, 2014 at 1:15 pm
#183412
Participant
Also, if you decide to use private (or protected) properties or methods, it is a very common convention to start their name with an underscore (i.e., $_name instead of $name). Again, it just keeps things easy to read and understand.
Ah, yes. Saw this too in tutorials. Thanks for that.