abstract class MyClass
{
    private static makeMePublic()
    {
    }
}
I want to make MyClass::makeMePublic method to be callable from the outside. I saw a solution here: Best practices to test protected methods with PHPUnit but that requires the class to be instantized. In this case its not possible. So, how to make "public" this method?
 
     
    