DoctrineEncryptBundle icon indicating copy to clipboard operation
DoctrineEncryptBundle copied to clipboard

[SF 5 / Command] Encript command is not working

Open drjele opened this issue 4 years ago • 0 comments

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);

drjele avatar Oct 08 '20 08:10 drjele