1
I’d like to understand why in some code examples, people import classes as follows:
use \Firebase\JWT\JWT;
and not just:
use Firebase\JWT\JWT;
Is there any difference in starting with a "\"?
In my tests for my classes the result was exactly the same for the two forms of use. So I’d like to know if there really is a difference or is it just optional.
Yes that I understand. The problem is that I usually see this against "" at the beginning of "use" itself. That doesn’t make much sense to me.
– alan