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 both forms of use. So I wonder if there's a difference or it's just optional.