Within some PHP code, I see the following ...
...
$sg = new \SendGrid(
...
);
$email = new \SendGrid\Email();
...
I understand that the backslash is usually to escape special characters... but here what is the backslash for? What is it doing?