DoctrineEncryptBundle
DoctrineEncryptBundle copied to clipboard
[SF 5 / Command] Encript command is not working
The encript commnad is missing the persist call.
$this->subscriber->processFields($row[0]);
.. this should be changed to:
$entity = $row[0];
$this->subscriber->processFields($entity);
$this->entityManager->persist($entity);