Symfony 4: Event listener Cannot autowire UserInterface
The user is not a symfony service and it will not get autowired.
Try with this interface:
Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface
Then you do:
$user=$tokenStorage->getToken()->getUser();