What is the difference between self and static keyword in static method.
I do understand that you could not extend static methods, you could, but they would always reference to parent method.
And static keyword inside static method solves that.
So does it means I can forget about self, and joust use static from now on? Or there are cases where I could use self?
Thanks.