Ok, all jokes aside...
I just noticed that I was able to refer to a static class propery using $this::$name
. I don't remember ever running across that before since I always used self::$name
or $this->name
in my classes.
In what version of PHP did $this
start working with static class properties?