Can't get email after Google oauth2 Symfony

I found the answer! Thanks for this question I found also an article in Auth0 docs we have some explanations about what is “scope”. So to get the information about email I just had to add email to my scope. So for symfony it will be

hwi_oauth:
    ...
    resource_owners:
        auth0:
            ...
            scope: "openid email profile"

I think the community should add this information in symfony tutorial (maybe not only for symfony tutorial). All other setting clearly understandable, and this setting for unprepared person don’t understandable.

But it’s my opinion, I just suggest.
I hope it will help somebody!