0
Using Symfony2 plus Fosuserbundle, I want the user registration in the database to have no password encoder.
In security.yml
was placed:
encoders: FOS\UserBundle\Model\UserInterface: plaintext
However, when I create the user from the console:
fos:user:create -- admin [email protected] admin
The password in the bank is created as follows: admin{salt...}
.
In short, it creates with the password admin
how was reported plus salt between keys, for example: admin{e3adudjubsgsg88kgwg4w4oscw8os4c}
.
What should I do so that this field is only the password in plaintext
without the salt?