Skip to content
Advertisement

UserPasswordEncoderInterface Autowiring Not Working Symfony 4.4

I have a super basic API endpoint with a fresh install of symfony 4.4 and I’m getting the following error:

Cannot autowire argument $passwordEncoder of “AppControllerAuthenticationController::authenticateAction()”: it references interface “SymfonyComponentSecurityCoreEncoderUserPasswordEncoderInterface” but no such service exists.

My Controller:

JavaScript

If I remove UserPasswordEncoderInterface $passwordEncoder I get a successful nothing (expected for now). My User Entity is nothing special, and extends UserInterface correctly.

services.yaml

JavaScript

Using Symfony 4.4 and php 7.2.20

Almost certain this is some sort of configuration issue, but I’m not following what I did wrong.

Advertisement

Answer

Man am I smart, it was a config issue!

My security.yaml file was in main /config directory and not in the /config/packages directory. Ok maybe I’m not that smart…

Not sure how it got there. I think some out-dated package couldn’t find it in the config/packages directory.

There goes 48 hours of my life…

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement