PHP Can static:: replace self::?

You have to ask yourself: “Am I targeting the problem with the adequated approach?” self:: and static:: do two different things. For instance self:: or __CLASS__ are references to the current class, so defined in certain scope it will NOT suffice the need of static calling on forward. What will happen on inheritance? class A … Read more