Yeah it's normal, those indicate namespaces. You could use the appropriate 'use' statement to just use `new Difficulty()`to keep things tidy
I looked a bit at the php documentation and it seems that those namespaces are translated into file paths by the php interpreter. If I understood it correctly, those backslashed paths would fail on a standard Unix-like machine (because \ is an escape character). On the other hand, I believe that Windows these days recognizes the standard path delimter /. So maybe forward slashes are going to be more portable.