People keep telling me I should be using public, private, or protected access modifiers in front of all of my class properties and methods. I really don't understand why. I'm new so bear with me, but the way I see it is this:
I am the only one who will work on my code. Not a team.
I already know what everything means, plus using an editor that tells me all the declared vars and properties, I know I'm not going to step on my used variables.
One of the explanations I get is that it "protects or hides" your code from people who could see it.....but in PHP there's no way that I know of for a user to see your code in the first place, who am I hiding it from? If they CAN see my code then they are either a hacker or they are in my account so I can't stop them anyway.
I can understand if I were working with huge code on a team, but for small things it seems unnecessary.