I cannot seem to get this to work without the compiler yelling at me for being... stupid. But I have a class with another nested static class inside of it. I am trying to access it but I get a syntax error saying:
unexpected token ::
I am trying to call the class as follows:
myLibrary\myClass::nestedClass::myFunction()
The first set to '::' work just fine but the second pair are causing an error. Any idea of how I approach this? A lot of my libraries are written this way and I would very much appreciate if someone could help me!