I\'m wondering what is the difference between using self:: and parent:: when a static child class is extending static parent class e.g.
class Parent { p
self is used to call static function and manipulate static variables, which are class specific not object specific.